unoverse 0.1.52 → 0.1.53
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/operator/lib/ground.sh +6 -0
- package/package.json +1 -1
package/operator/lib/ground.sh
CHANGED
|
@@ -50,6 +50,12 @@ _ground_do() {
|
|
|
50
50
|
echo ""
|
|
51
51
|
echo -e " ${CYAN}https://cloud.digitalocean.com/account/api/tokens${NC}"
|
|
52
52
|
echo ""
|
|
53
|
+
# Full Access, stated plainly: this token CREATES infrastructure (droplet, load
|
|
54
|
+
# balancer, DNS, Postgres, Redis). Read Only cannot, and enumerating custom scopes
|
|
55
|
+
# for that list is homework that breaks when the ground grows.
|
|
56
|
+
echo -e " ${DIM}Scope: choose ${NC}${BOLD}Full Access${NC}${DIM}. This token creates your server, database and networking.${NC}"
|
|
57
|
+
echo -e " ${DIM}It stays on this machine; developers never receive it.${NC}"
|
|
58
|
+
echo ""
|
|
53
59
|
local DO_TOKEN
|
|
54
60
|
read -r -s -p " Paste the token (hidden): " DO_TOKEN
|
|
55
61
|
echo ""
|
package/package.json
CHANGED