Skip to content

Commit e00fea3

Browse files
committed
f
1 parent 265fe36 commit e00fea3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/stackhpc-all-in-one.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ jobs:
134134
aio_vm_flavor = "${{ env.VM_FLAVOR }}"
135135
aio_vm_network = "${{ env.VM_NETWORK }}"
136136
aio_vm_subnet = "${{ env.VM_SUBNET }}"
137-
aio_vm_tags = "${{ env.VM_TAGS }}"
137+
aio_vm_tags = ${{ env.VM_TAGS }}
138138
EOF
139139
working-directory: ${{ github.workspace }}/terraform/aio
140140
env:

terraform/aio/vm.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ variable "aio_vm_volume_size" {
3838
default = 35
3939
}
4040

41-
variable "aio_tags" {
41+
variable "aio_vm_tags" {
4242
type = list(string)
4343
default = []
4444
}
@@ -75,7 +75,7 @@ resource "openstack_compute_instance_v2" "kayobe-aio" {
7575
delete_on_termination = true
7676
}
7777

78-
tags = var.aio_tags
78+
tags = var.aio_vm_tags
7979
}
8080

8181
# Wait for the instance to be accessible via SSH before progressing.

0 commit comments

Comments
 (0)