Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
Terraform Openstack
Manage
Activity
Members
Labels
Plan
Issues
10
Issue boards
Milestones
Wiki
Code
Merge requests
6
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
rc
Terraform Openstack
Commits
50f4d7ab
Commit
50f4d7ab
authored
1 year ago
by
Krish Moodbidri
Browse files
Options
Downloads
Patches
Plain Diff
test-attaching volumes manually instead of for loop
parent
e7fa6778
No related branches found
Branches containing commit
No related tags found
3 merge requests
!47
Integration Testing: Sequential Merge and Validation of Four Feature Branches (PR #43,#44, #45,#46)
,
!43
feat: Add new data volume for XDMod queue data
,
!34
feat: Add new data volume for XDMod queue data
Pipeline
#9095
failed with stages
in 28 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ohpc-instance/main.tf
+5
-2
5 additions, 2 deletions
ohpc-instance/main.tf
with
5 additions
and
2 deletions
ohpc-instance/main.tf
+
5
−
2
View file @
50f4d7ab
...
...
@@ -72,7 +72,7 @@ resource "openstack_compute_volume_attach_v2" "volume_attach" {
}
output
"xdmod_instance_id"
{
value
=
[
for
instance
in
openstack_compute_instance_v2
.
ohpc
:
instance
.
id
]
value
=
openstack_compute_instance_v2
.
ohpc
[
0
]
.
id
}
output
"ssh_host"
{
...
...
@@ -80,5 +80,8 @@ output "ssh_host" {
}
output
"device"
{
value
=
[
for
volume
in
openstack_compute_volume_attach_v2
.
volume_attach
:
volume
.
device
]
value
=
[
openstack_compute_volume_attach_v2
.
volume_attach
[
0
].
device
,
openstack_compute_volume_attach_v2
.
volume_attach
[
1
].
device
,
]
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment