Skip to content

Commit c18f978

Browse files
committed
fix variable ordering
Signed-off-by: Evan Baker <rbtr@users.noreply.github.com>
1 parent a9d33e9 commit c18f978

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

hack/swift/Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ AZCFG = $(HOME)/.azure
77
AZIMG = mcr.microsoft.com/azure-cli
88
AZCLI ?= docker run --rm -v $(AZCFG):/root/.azure -v $(KUBECFG):/root/.kube -v $(SSH):/root/.ssh $(AZIMG) az
99

10-
# overrideable variables
11-
SUB ?= $(AZURE_SUBSCRIPTION)
12-
CLUSTER ?= $(whoami)-$(REGION)
13-
GROUP ?= $(CLUSTER)
14-
VNET ?= $(CLUSTER)
1510
# overrideable defaults
1611
REGION ?= westus2
1712
OS_SKU ?= Ubuntu
1813
VM_SIZE ?= Standard_B2s
14+
# overrideable variables
15+
SUB ?= $(AZURE_SUBSCRIPTION)
16+
CLUSTER ?= $(USER)-$(REGION)
17+
GROUP ?= $(CLUSTER)
18+
VNET ?= $(CLUSTER)
1919

2020
##@ Help
2121

0 commit comments

Comments
 (0)