unoverse 0.1.60 → 0.1.61
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/deploy.sh +5 -9
- package/package.json +1 -1
package/operator/lib/deploy.sh
CHANGED
|
@@ -109,16 +109,12 @@ cmd_deploy() {
|
|
|
109
109
|
fi
|
|
110
110
|
ok "terraform.tfvars is complete"
|
|
111
111
|
|
|
112
|
-
#
|
|
113
|
-
# for
|
|
114
|
-
#
|
|
112
|
+
# STRAIGHT INTO TERRAFORM. Its plan plus its own typed "yes" IS the decision gate
|
|
113
|
+
# for billable infrastructure; a [Y/n] in front of it was asking permission to ask
|
|
114
|
+
# permission. Answering "no" is terraform's "no".
|
|
115
|
+
echo ""
|
|
116
|
+
info "Provisioning. Terraform shows the plan and asks for your ${BOLD}yes${NC} before creating anything"
|
|
115
117
|
echo ""
|
|
116
|
-
local REPLY
|
|
117
|
-
read -r -p " Provision now? terraform runs here and shows its plan first. [Y/n] " REPLY
|
|
118
|
-
if [[ "$REPLY" =~ ^[Nn]$ ]]; then
|
|
119
|
-
info "When ready: cd infra/$cloud && terraform init && terraform apply && cd ../.. && unoverse deploy"
|
|
120
|
-
exit 0
|
|
121
|
-
fi
|
|
122
118
|
# Terraform is one static binary: install it directly from the official release
|
|
123
119
|
# rather than sending anyone to brew (whose compile chain can demand Xcode Command
|
|
124
120
|
# Line Tools updates for a tool that needs no compiling).
|
package/package.json
CHANGED