File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ jobs:
134
134
aio_vm_flavor = "${{ env.VM_FLAVOR }}"
135
135
aio_vm_network = "${{ env.VM_NETWORK }}"
136
136
aio_vm_subnet = "${{ env.VM_SUBNET }}"
137
- aio_vm_tags = " ${{ env.VM_TAGS }}"
137
+ aio_vm_tags = ${{ env.VM_TAGS }}
138
138
EOF
139
139
working-directory : ${{ github.workspace }}/terraform/aio
140
140
env :
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ variable "aio_vm_volume_size" {
38
38
default = 35
39
39
}
40
40
41
- variable "aio_tags " {
41
+ variable "aio_vm_tags " {
42
42
type = list (string )
43
43
default = []
44
44
}
@@ -75,7 +75,7 @@ resource "openstack_compute_instance_v2" "kayobe-aio" {
75
75
delete_on_termination = true
76
76
}
77
77
78
- tags = var. aio_tags
78
+ tags = var. aio_vm_tags
79
79
}
80
80
81
81
# Wait for the instance to be accessible via SSH before progressing.
You can’t perform that action at this time.
0 commit comments