We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dcf0b3f commit 3bf7918Copy full SHA for 3bf7918
Makefile
@@ -253,6 +253,11 @@ terraform-init:
253
@echo "${BLUE}${ROCKET} Initializing Terraform...${RESET}"
254
cd terraform && terraform init
255
256
+.PHONY: terraform-update
257
+terraform-upgrade:
258
+ @echo "${BLUE}${ROCKET} Updating Terraform...${RESET}"
259
+ cd terraform && terraform init -upgrade
260
+
261
.PHONY: terraform-plan
262
terraform-plan:
263
@echo "${BLUE}${CLOCK} Planning Terraform changes...${RESET}"
@@ -298,6 +303,9 @@ tf-destroy: terraform-destroy
298
303
.PHONY: tf-out
299
304
tf-out: terraform-output
300
305
306
+.PHONY: tf-update
307
+tf-out: terraform-upgrade
308
301
309
# Complete Confluent Cloud setup
302
310
.PHONY: cc-setup
311
cc-setup:
0 commit comments