Skip to content
Snippets Groups Projects
Commit b683ec08 authored by Krish Moodbidri's avatar Krish Moodbidri
Browse files

chnaged varible from vars file to local

parent 61bc055f
No related branches found
No related tags found
No related merge requests found
Pipeline #14226 failed with stages
in 13 seconds
...@@ -78,12 +78,12 @@ resource "openstack_compute_floatingip_associate_v2" "ohpc" { ...@@ -78,12 +78,12 @@ resource "openstack_compute_floatingip_associate_v2" "ohpc" {
# Attach specific volumes # Attach specific volumes
resource "openstack_compute_volume_attach_v2" "attach_prod_volume" { resource "openstack_compute_volume_attach_v2" "attach_prod_volume" {
instance_id = openstack_compute_instance_v2.ohpc.id instance_id = openstack_compute_instance_v2.ohpc.id
volume_id = var.data_volume volume_id = data_volume
} }
resource "openstack_compute_volume_attach_v2" "attach_prod_queue_volume" { resource "openstack_compute_volume_attach_v2" "attach_prod_queue_volume" {
instance_id = openstack_compute_instance_v2.ohpc.id instance_id = openstack_compute_instance_v2.ohpc.id
volume_id = var.prod_volume_id volume_id = prod_volume_id
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment