Skip to content
Snippets Groups Projects

Integration Testing: Sequential Merge and Validation of Four Feature Branches (PR #43,#44, #45,#46)

Compare and Show latest version
1 file
+ 6
3
Compare changes
  • Side-by-side
  • Inline
+ 6
3
@@ -9,7 +9,6 @@ required_version = ">= 0.14.0"
}
}
variable "ohpc_instance_name" {}
variable "image_ohpc" {}
variable "flavor" {}
@@ -79,13 +78,15 @@ resource "openstack_compute_floatingip_associate_v2" "ohpc" {
# Attach specific volumes
resource "openstack_compute_volume_attach_v2" "attach_prod_volume" {
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" {
instance_id = openstack_compute_instance_v2.ohpc.id
volume_id = var.prod_volume_id
volume_id = prod_volume_id
}
output "xdmod_instance_id" {
value = openstack_compute_instance_v2.ohpc.id
}
@@ -100,3 +101,5 @@ output "device" {
openstack_compute_volume_attach_v2.attach_prod_queue_volume.device
]
}
Loading