Add the NFS network Id to the state.
This commit is contained in:
parent
f2c51abfae
commit
134035acd0
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"version": 4,
|
||||
"terraform_version": "1.6.6",
|
||||
"serial": 11,
|
||||
"serial": 12,
|
||||
"lineage": "194691ec-f344-4bd2-98ae-cbd15e9c9cdf",
|
||||
"outputs": {
|
||||
"almalinux_9": {
|
||||
|
@ -403,6 +403,10 @@
|
|||
"string"
|
||||
]
|
||||
},
|
||||
"storage_nfs_network_id": {
|
||||
"value": "5f4023cc-4016-404c-94e5-86220095fbaf",
|
||||
"type": "string"
|
||||
},
|
||||
"ubuntu1804_data_file": {
|
||||
"value": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
||||
"type": "string"
|
||||
|
@ -644,7 +648,7 @@
|
|||
"id": "5887da8d-e362-4509-93ac-8a70bf8baef9",
|
||||
"name": "nfs_share_no_ingress",
|
||||
"region": "isti_area_pi_1",
|
||||
"tags": null,
|
||||
"tags": [],
|
||||
"tenant_id": "e8f8ca72f30648a8b389b4e745ac83a9",
|
||||
"timeouts": null
|
||||
},
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"version": 4,
|
||||
"terraform_version": "1.6.6",
|
||||
"serial": 37,
|
||||
"serial": 38,
|
||||
"lineage": "6d43430c-e6aa-d370-b6d5-22f2281117df",
|
||||
"outputs": {
|
||||
"almalinux_9": {
|
||||
|
@ -407,6 +407,10 @@
|
|||
"string"
|
||||
]
|
||||
},
|
||||
"storage_nfs_network_id": {
|
||||
"value": "5f4023cc-4016-404c-94e5-86220095fbaf",
|
||||
"type": "string"
|
||||
},
|
||||
"ubuntu1804_data_file": {
|
||||
"value": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
||||
"type": "string"
|
||||
|
@ -648,7 +652,7 @@
|
|||
"id": "ddb16502-7217-4677-a8a7-ca0cbf9a779a",
|
||||
"name": "nfs_share_no_ingress",
|
||||
"region": "isti_area_pi_1",
|
||||
"tags": null,
|
||||
"tags": [],
|
||||
"tenant_id": "6fdc02e2827b405dad99f34698659742",
|
||||
"timeouts": null
|
||||
},
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"version": 4,
|
||||
"terraform_version": "1.6.6",
|
||||
"serial": 17,
|
||||
"serial": 19,
|
||||
"lineage": "6d54ddff-c4ea-b8c7-3b92-53ed6c62db24",
|
||||
"outputs": {
|
||||
"almalinux_9": {
|
||||
|
@ -404,6 +404,10 @@
|
|||
"string"
|
||||
]
|
||||
},
|
||||
"storage_nfs_network_id": {
|
||||
"value": "5f4023cc-4016-404c-94e5-86220095fbaf",
|
||||
"type": "string"
|
||||
},
|
||||
"ubuntu1804_data_file": {
|
||||
"value": "../../openstack_vm_data_scripts/ubuntu1804.sh",
|
||||
"type": "string"
|
||||
|
@ -613,7 +617,7 @@
|
|||
"id": "167e4897-f776-4cbd-986f-77313aa68af2",
|
||||
"name": "nfs_share_no_ingress",
|
||||
"region": "isti_area_pi_1",
|
||||
"tags": null,
|
||||
"tags": [],
|
||||
"tenant_id": "1b45adf388934758b56d0dfdb4bfacf3",
|
||||
"timeouts": null
|
||||
},
|
||||
|
|
|
@ -37,6 +37,10 @@ variable "availability_zones_names" {
|
|||
}
|
||||
}
|
||||
|
||||
variable "storage_nfs_network_id" {
|
||||
default = "5f4023cc-4016-404c-94e5-86220095fbaf"
|
||||
}
|
||||
|
||||
variable "ubuntu_1804" {
|
||||
type = map(string)
|
||||
|
||||
|
|
|
@ -13,3 +13,8 @@ output "main_subnet_network_id" {
|
|||
output "external_gateway_ip" {
|
||||
value = openstack_networking_router_v2.external-router.external_fixed_ip
|
||||
}
|
||||
|
||||
output "storage_nfs_network_id" {
|
||||
value = var.storage_nfs_network_id
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue