Skip to content

Commit 79187e9

Browse files
committed
Fix for bin/set-up-account script rename
1 parent 03d8506 commit 79187e9

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ __check_defined = \
5858

5959
infra-set-up-account: ## Configure and create resources for account and create its tfbackend file
6060
@:$(call check_defined, ACCOUNT_NAME, human readable name for account e.g. "prod" or the account alias)
61-
./bin/set-up-current-account $(ACCOUNT_NAME) $(args)
61+
./bin/set-up-account $(ACCOUNT_NAME) $(args)
6262

6363
infra-configure-network: ## Configure network $NETWORK_NAME
6464
@:$(call check_defined, NETWORK_NAME, the name of the network in /infra/networks)

infra/accounts/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ locals {
99
# ARM_SUBSCRIPTION_ID env var.
1010
shared_subscription_id = try(data.external.account_ids_by_name.result[local.shared_account_name], local.subscription_id)
1111

12-
# These must match the name of the resources created while bootstrapping the account in set-up-current-account
12+
# These must match the name of the resources created while bootstrapping the account in set-up-account
1313
tf_state_resource_group_name = "${module.project_config.project_name}-tf"
1414
# This must be unique across the entire Azure service, not just within the resource group.
1515
tf_state_storage_account_id_str = join("-", [local.subscription_id, local.tf_state_resource_group_name])

0 commit comments

Comments
 (0)