From e2ef4da0000c37afa695e1594bcdb60f83c08a2d Mon Sep 17 00:00:00 2001 From: Antonio Calanducci Date: Thu, 11 Jul 2024 11:46:04 +0200 Subject: [PATCH] add NFS share for beacon argo, cora_ts, cora_pr, seadatanet instances --- .../bluecloud-beacon/beacon.tf | 163 +- .../bluecloud-beacon/terraform.tfstate | 2942 ++++++++++++++++- 2 files changed, 3103 insertions(+), 2 deletions(-) diff --git a/openstack-tf/d4s-production/manila-shares-used-by-swarm-stacks/bluecloud-beacon/beacon.tf b/openstack-tf/d4s-production/manila-shares-used-by-swarm-stacks/bluecloud-beacon/beacon.tf index 7ddb977..a19d5ed 100644 --- a/openstack-tf/d4s-production/manila-shares-used-by-swarm-stacks/bluecloud-beacon/beacon.tf +++ b/openstack-tf/d4s-production/manila-shares-used-by-swarm-stacks/bluecloud-beacon/beacon.tf @@ -1,6 +1,7 @@ # NFS shares required by Bluecloud beacon service -# Create a NFS share +# Create a NFS share for emodnet_chemistry + resource "openstack_sharedfilesystem_share_v2" "beacon_emodnet_chemistry" { name = "beacon_emodnet_chemistry" description = "NFS share for the Bluecloud beacon_emodnet_chemistry data volume" @@ -40,6 +41,8 @@ output "beacon_emodnet_chemistry_nfs_data_workers_acls" { } + + # Create a NFS share for wod resource "openstack_sharedfilesystem_share_v2" "beacon_wod_data" { name = "beacon_wod_data" @@ -123,4 +126,162 @@ output "beacon_bgc_data_nfs_data_workers_acls" { +# Create a NFS share for CORA PR +resource "openstack_sharedfilesystem_share_v2" "beacon_cora_pr_data" { + name = "beacon_cora_pr_data" + description = "NFS share for the Bluecloud beacon_cora_pr_data data volume" + share_proto = "NFS" + size = 10 +} +# Allow access to the NFS share to Swarm Managers and Workers +resource "openstack_sharedfilesystem_share_access_v2" "beacon_cora_pr_data_mgr_share_access" { + for_each = { for nfs_ip in data.terraform_remote_state.main_infrastructure.outputs.swarm_managers_nfs_ip_ports : join("", nfs_ip.all_fixed_ips) => nfs_ip } + share_id = openstack_sharedfilesystem_share_v2.beacon_cora_pr_data.id + access_type = "ip" + access_to = each.key + access_level = "rw" +} + +resource "openstack_sharedfilesystem_share_access_v2" "beacon_cora_pr_data_workers_share_access" { + for_each = { for nfs_ip in data.terraform_remote_state.main_infrastructure.outputs.swarm_workers_nfs_ip_ports : join("", nfs_ip.all_fixed_ips) => nfs_ip } + share_id = openstack_sharedfilesystem_share_v2.beacon_cora_pr_data.id + access_type = "ip" + access_to = each.key + access_level = "rw" +} + +output "beacon_cora_pr_data_nfs_data" { + value = openstack_sharedfilesystem_share_v2.beacon_cora_pr_data +} + +output "beacon_cora_pr_data_nfs_data_mgr_acls" { + value = openstack_sharedfilesystem_share_access_v2.beacon_cora_pr_data_mgr_share_access + sensitive = true +} + +output "beacon_cora_pr_data_nfs_data_workers_acls" { + value = openstack_sharedfilesystem_share_access_v2.beacon_cora_pr_data_workers_share_access + sensitive = true +} + + + +# Create a NFS share for CORA TS +resource "openstack_sharedfilesystem_share_v2" "beacon_cora_ts_data" { + name = "beacon_cora_ts_data" + description = "NFS share for the Bluecloud beacon_cora_ts_data data volume" + share_proto = "NFS" + size = 10 +} + +# Allow access to the NFS share to Swarm Managers and Workers +resource "openstack_sharedfilesystem_share_access_v2" "beacon_cora_ts_data_mgr_share_access" { + for_each = { for nfs_ip in data.terraform_remote_state.main_infrastructure.outputs.swarm_managers_nfs_ip_ports : join("", nfs_ip.all_fixed_ips) => nfs_ip } + share_id = openstack_sharedfilesystem_share_v2.beacon_cora_ts_data.id + access_type = "ip" + access_to = each.key + access_level = "rw" +} + +resource "openstack_sharedfilesystem_share_access_v2" "beacon_cora_ts_data_workers_share_access" { + for_each = { for nfs_ip in data.terraform_remote_state.main_infrastructure.outputs.swarm_workers_nfs_ip_ports : join("", nfs_ip.all_fixed_ips) => nfs_ip } + share_id = openstack_sharedfilesystem_share_v2.beacon_cora_ts_data.id + access_type = "ip" + access_to = each.key + access_level = "rw" +} + +output "beacon_cora_ts_data_nfs_data" { + value = openstack_sharedfilesystem_share_v2.beacon_cora_ts_data +} + +output "beacon_cora_ts_data_nfs_data_mgr_acls" { + value = openstack_sharedfilesystem_share_access_v2.beacon_cora_ts_data_mgr_share_access + sensitive = true +} + +output "beacon_cora_ts_data_nfs_data_workers_acls" { + value = openstack_sharedfilesystem_share_access_v2.beacon_cora_ts_data_workers_share_access + sensitive = true +} + + +# Create a NFS share for argo +resource "openstack_sharedfilesystem_share_v2" "beacon_argo_data" { + name = "beacon_argo_data" + description = "NFS share for the Bluecloud beacon_argo_data data volume" + share_proto = "NFS" + size = 10 +} + +# Allow access to the NFS share to Swarm Managers and Workers +resource "openstack_sharedfilesystem_share_access_v2" "beacon_argo_data_mgr_share_access" { + for_each = { for nfs_ip in data.terraform_remote_state.main_infrastructure.outputs.swarm_managers_nfs_ip_ports : join("", nfs_ip.all_fixed_ips) => nfs_ip } + share_id = openstack_sharedfilesystem_share_v2.beacon_argo_data.id + access_type = "ip" + access_to = each.key + access_level = "rw" +} + +resource "openstack_sharedfilesystem_share_access_v2" "beacon_argo_data_workers_share_access" { + for_each = { for nfs_ip in data.terraform_remote_state.main_infrastructure.outputs.swarm_workers_nfs_ip_ports : join("", nfs_ip.all_fixed_ips) => nfs_ip } + share_id = openstack_sharedfilesystem_share_v2.beacon_argo_data.id + access_type = "ip" + access_to = each.key + access_level = "rw" +} + +output "beacon_argo_data_nfs_data" { + value = openstack_sharedfilesystem_share_v2.beacon_argo_data +} + +output "beacon_argo_data_nfs_data_mgr_acls" { + value = openstack_sharedfilesystem_share_access_v2.beacon_argo_data_mgr_share_access + sensitive = true +} + +output "beacon_argo_data_nfs_data_workers_acls" { + value = openstack_sharedfilesystem_share_access_v2.beacon_argo_data_workers_share_access + sensitive = true +} + + +# Create a NFS share for seadatanet +resource "openstack_sharedfilesystem_share_v2" "beacon_seadatanet_data" { + name = "beacon_seadatanet_data" + description = "NFS share for the Bluecloud beacon_seadatanet_data data volume" + share_proto = "NFS" + size = 10 +} + +# Allow access to the NFS share to Swarm Managers and Workers +resource "openstack_sharedfilesystem_share_access_v2" "beacon_seadatanet_data_mgr_share_access" { + for_each = { for nfs_ip in data.terraform_remote_state.main_infrastructure.outputs.swarm_managers_nfs_ip_ports : join("", nfs_ip.all_fixed_ips) => nfs_ip } + share_id = openstack_sharedfilesystem_share_v2.beacon_seadatanet_data.id + access_type = "ip" + access_to = each.key + access_level = "rw" +} + +resource "openstack_sharedfilesystem_share_access_v2" "beacon_seadatanet_data_workers_share_access" { + for_each = { for nfs_ip in data.terraform_remote_state.main_infrastructure.outputs.swarm_workers_nfs_ip_ports : join("", nfs_ip.all_fixed_ips) => nfs_ip } + share_id = openstack_sharedfilesystem_share_v2.beacon_seadatanet_data.id + access_type = "ip" + access_to = each.key + access_level = "rw" +} + +output "beacon_seadatanet_data_nfs_data" { + value = openstack_sharedfilesystem_share_v2.beacon_seadatanet_data +} + +output "beacon_seadatanet_data_nfs_data_mgr_acls" { + value = openstack_sharedfilesystem_share_access_v2.beacon_seadatanet_data_mgr_share_access + sensitive = true +} + +output "beacon_seadatanet_data_nfs_data_workers_acls" { + value = openstack_sharedfilesystem_share_access_v2.beacon_seadatanet_data_workers_share_access + sensitive = true +} diff --git a/openstack-tf/d4s-production/manila-shares-used-by-swarm-stacks/bluecloud-beacon/terraform.tfstate b/openstack-tf/d4s-production/manila-shares-used-by-swarm-stacks/bluecloud-beacon/terraform.tfstate index 378eb98..8386cd6 100644 --- a/openstack-tf/d4s-production/manila-shares-used-by-swarm-stacks/bluecloud-beacon/terraform.tfstate +++ b/openstack-tf/d4s-production/manila-shares-used-by-swarm-stacks/bluecloud-beacon/terraform.tfstate @@ -1,9 +1,457 @@ { "version": 4, "terraform_version": "1.6.2", - "serial": 37, + "serial": 87, "lineage": "4cb13602-711f-a1bf-5771-4083b0b0ccac", "outputs": { + "beacon_argo_data_nfs_data": { + "value": { + "all_metadata": {}, + "availability_zone": "nova", + "description": "NFS share for the Bluecloud beacon_argo_data data volume", + "export_locations": [ + { + "path": "172.17.0.7:/volumes/_nogroup/41556394-f093-410e-be1e-cb77ebb101ca/9e3f1dc0-dc18-4083-a3cb-1d251d3433b0", + "preferred": "false" + } + ], + "has_replicas": false, + "host": "", + "id": "d9345418-68c9-48d1-a0a8-c08cc6452978", + "is_public": false, + "metadata": null, + "name": "beacon_argo_data", + "project_id": "1b45adf388934758b56d0dfdb4bfacf3", + "region": "isti_area_pi_1", + "replication_type": "", + "share_network_id": "", + "share_proto": "NFS", + "share_server_id": "", + "share_type": "default", + "size": 10, + "snapshot_id": "", + "timeouts": null + }, + "type": [ + "object", + { + "all_metadata": [ + "map", + "string" + ], + "availability_zone": "string", + "description": "string", + "export_locations": [ + "list", + [ + "object", + { + "path": "string", + "preferred": "string" + } + ] + ], + "has_replicas": "bool", + "host": "string", + "id": "string", + "is_public": "bool", + "metadata": [ + "map", + "string" + ], + "name": "string", + "project_id": "string", + "region": "string", + "replication_type": "string", + "share_network_id": "string", + "share_proto": "string", + "share_server_id": "string", + "share_type": "string", + "size": "number", + "snapshot_id": "string", + "timeouts": [ + "object", + { + "create": "string", + "delete": "string", + "update": "string" + } + ] + } + ] + }, + "beacon_argo_data_nfs_data_mgr_acls": { + "value": { + "172.17.1.180": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.180", + "access_type": "ip", + "id": "14cd85cd-e2cc-4d0f-ac28-e5bf4f3f835e", + "region": "isti_area_pi_1", + "share_id": "d9345418-68c9-48d1-a0a8-c08cc6452978", + "state": "active", + "timeouts": null + }, + "172.17.2.236": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.2.236", + "access_type": "ip", + "id": "ade2813a-d687-43c0-b898-3b71f2293634", + "region": "isti_area_pi_1", + "share_id": "d9345418-68c9-48d1-a0a8-c08cc6452978", + "state": "active", + "timeouts": null + }, + "172.17.3.65": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.3.65", + "access_type": "ip", + "id": "a3feabba-60ea-458a-9f7d-5dc4ed2323d4", + "region": "isti_area_pi_1", + "share_id": "d9345418-68c9-48d1-a0a8-c08cc6452978", + "state": "active", + "timeouts": null + } + }, + "type": [ + "object", + { + "172.17.1.180": [ + "object", + { + "access_key": "string", + "access_level": "string", + "access_to": "string", + "access_type": "string", + "id": "string", + "region": "string", + "share_id": "string", + "state": "string", + "timeouts": [ + "object", + { + "create": "string", + "delete": "string", + "update": "string" + } + ] + } + ], + "172.17.2.236": [ + "object", + { + "access_key": "string", + "access_level": "string", + "access_to": "string", + "access_type": "string", + "id": "string", + "region": "string", + "share_id": "string", + "state": "string", + "timeouts": [ + "object", + { + "create": "string", + "delete": "string", + "update": "string" + } + ] + } + ], + "172.17.3.65": [ + "object", + { + "access_key": "string", + "access_level": "string", + "access_to": "string", + "access_type": "string", + "id": "string", + "region": "string", + "share_id": "string", + "state": "string", + "timeouts": [ + "object", + { + "create": "string", + "delete": "string", + "update": "string" + } + ] + } + ] + } + ], + "sensitive": true + }, + "beacon_argo_data_nfs_data_workers_acls": { + "value": { + "172.17.0.155": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.0.155", + "access_type": "ip", + "id": "7dbf6017-bfc6-4b92-8547-625180db9e37", + "region": "isti_area_pi_1", + "share_id": "d9345418-68c9-48d1-a0a8-c08cc6452978", + "state": "active", + "timeouts": null + }, + "172.17.1.142": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.142", + "access_type": "ip", + "id": "07116b2a-557a-4b15-96f8-52512cd0710d", + "region": "isti_area_pi_1", + "share_id": "d9345418-68c9-48d1-a0a8-c08cc6452978", + "state": "active", + "timeouts": null + }, + "172.17.1.185": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.185", + "access_type": "ip", + "id": "b3729505-3928-4fa3-a26f-518052732e00", + "region": "isti_area_pi_1", + "share_id": "d9345418-68c9-48d1-a0a8-c08cc6452978", + "state": "active", + "timeouts": null + }, + "172.17.1.62": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.62", + "access_type": "ip", + "id": "432ee534-c787-4c38-9c26-095f8c83383c", + "region": "isti_area_pi_1", + "share_id": "d9345418-68c9-48d1-a0a8-c08cc6452978", + "state": "active", + "timeouts": null + }, + "172.17.1.65": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.65", + "access_type": "ip", + "id": "d294740f-2ae3-46ac-b495-760a2d52043c", + "region": "isti_area_pi_1", + "share_id": "d9345418-68c9-48d1-a0a8-c08cc6452978", + "state": "active", + "timeouts": null + }, + "172.17.3.251": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.3.251", + "access_type": "ip", + "id": "c97b142e-4d74-45f3-9295-b1c5b4c51be4", + "region": "isti_area_pi_1", + "share_id": "d9345418-68c9-48d1-a0a8-c08cc6452978", + "state": "active", + "timeouts": null + }, + "172.17.3.55": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.3.55", + "access_type": "ip", + "id": "9c7d76db-7f03-40a9-9278-913bceadde38", + "region": "isti_area_pi_1", + "share_id": "d9345418-68c9-48d1-a0a8-c08cc6452978", + "state": "active", + "timeouts": null + }, + "172.17.3.9": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.3.9", + "access_type": "ip", + "id": "7c75dbe4-b0a3-4db6-9e88-5486c276957f", + "region": "isti_area_pi_1", + "share_id": "d9345418-68c9-48d1-a0a8-c08cc6452978", + "state": "active", + "timeouts": null + } + }, + "type": [ + "object", + { + "172.17.0.155": [ + "object", + { + "access_key": "string", + "access_level": "string", + "access_to": "string", + "access_type": "string", + "id": "string", + "region": "string", + "share_id": "string", + "state": "string", + "timeouts": [ + "object", + { + "create": "string", + "delete": "string", + "update": "string" + } + ] + } + ], + "172.17.1.142": [ + "object", + { + "access_key": "string", + "access_level": "string", + "access_to": "string", + "access_type": "string", + "id": "string", + "region": "string", + "share_id": "string", + "state": "string", + "timeouts": [ + "object", + { + "create": "string", + "delete": "string", + "update": "string" + } + ] + } + ], + "172.17.1.185": [ + "object", + { + "access_key": "string", + "access_level": "string", + "access_to": "string", + "access_type": "string", + "id": "string", + "region": "string", + "share_id": "string", + "state": "string", + "timeouts": [ + "object", + { + "create": "string", + "delete": "string", + "update": "string" + } + ] + } + ], + "172.17.1.62": [ + "object", + { + "access_key": "string", + "access_level": "string", + "access_to": "string", + "access_type": "string", + "id": "string", + "region": "string", + "share_id": "string", + "state": "string", + "timeouts": [ + "object", + { + "create": "string", + "delete": "string", + "update": "string" + } + ] + } + ], + "172.17.1.65": [ + "object", + { + "access_key": "string", + "access_level": "string", + "access_to": "string", + "access_type": "string", + "id": "string", + "region": "string", + "share_id": "string", + "state": "string", + "timeouts": [ + "object", + { + "create": "string", + "delete": "string", + "update": "string" + } + ] + } + ], + "172.17.3.251": [ + "object", + { + "access_key": "string", + "access_level": "string", + "access_to": "string", + "access_type": "string", + "id": "string", + "region": "string", + "share_id": "string", + "state": "string", + "timeouts": [ + "object", + { + "create": "string", + "delete": "string", + "update": "string" + } + ] + } + ], + "172.17.3.55": [ + "object", + { + "access_key": "string", + "access_level": "string", + "access_to": "string", + "access_type": "string", + "id": "string", + "region": "string", + "share_id": "string", + "state": "string", + "timeouts": [ + "object", + { + "create": "string", + "delete": "string", + "update": "string" + } + ] + } + ], + "172.17.3.9": [ + "object", + { + "access_key": "string", + "access_level": "string", + "access_to": "string", + "access_type": "string", + "id": "string", + "region": "string", + "share_id": "string", + "state": "string", + "timeouts": [ + "object", + { + "create": "string", + "delete": "string", + "update": "string" + } + ] + } + ] + } + ], + "sensitive": true + }, "beacon_bgc_data_nfs_data": { "value": { "all_metadata": {}, @@ -452,6 +900,902 @@ ], "sensitive": true }, + "beacon_cora_pr_data_nfs_data": { + "value": { + "all_metadata": {}, + "availability_zone": "nova", + "description": "NFS share for the Bluecloud beacon_cora_pr_data data volume", + "export_locations": [ + { + "path": "172.17.0.7:/volumes/_nogroup/f99c3105-3c9c-4f9d-ad95-9277b4fd7636/e102422c-0827-4cb9-916f-d21667c80e34", + "preferred": "false" + } + ], + "has_replicas": false, + "host": "", + "id": "dc258de0-0d49-4a90-ba8a-2df1331afdf0", + "is_public": false, + "metadata": null, + "name": "beacon_cora_pr_data", + "project_id": "1b45adf388934758b56d0dfdb4bfacf3", + "region": "isti_area_pi_1", + "replication_type": "", + "share_network_id": "", + "share_proto": "NFS", + "share_server_id": "", + "share_type": "default", + "size": 10, + "snapshot_id": "", + "timeouts": null + }, + "type": [ + "object", + { + "all_metadata": [ + "map", + "string" + ], + "availability_zone": "string", + "description": "string", + "export_locations": [ + "list", + [ + "object", + { + "path": "string", + "preferred": "string" + } + ] + ], + "has_replicas": "bool", + "host": "string", + "id": "string", + "is_public": "bool", + "metadata": [ + "map", + "string" + ], + "name": "string", + "project_id": "string", + "region": "string", + "replication_type": "string", + "share_network_id": "string", + "share_proto": "string", + "share_server_id": "string", + "share_type": "string", + "size": "number", + "snapshot_id": "string", + "timeouts": [ + "object", + { + "create": "string", + "delete": "string", + "update": "string" + } + ] + } + ] + }, + "beacon_cora_pr_data_nfs_data_mgr_acls": { + "value": { + "172.17.1.180": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.180", + "access_type": "ip", + "id": "e24f7353-d3c7-46f8-ba47-b60e97e54a3a", + "region": "isti_area_pi_1", + "share_id": "dc258de0-0d49-4a90-ba8a-2df1331afdf0", + "state": "active", + "timeouts": null + }, + "172.17.2.236": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.2.236", + "access_type": "ip", + "id": "cd78426c-8fef-46d6-b42e-e10cce8fb030", + "region": "isti_area_pi_1", + "share_id": "dc258de0-0d49-4a90-ba8a-2df1331afdf0", + "state": "active", + "timeouts": null + }, + "172.17.3.65": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.3.65", + "access_type": "ip", + "id": "de5696ff-5ed8-489c-ad4c-6aebc43aabc9", + "region": "isti_area_pi_1", + "share_id": "dc258de0-0d49-4a90-ba8a-2df1331afdf0", + "state": "active", + "timeouts": null + } + }, + "type": [ + "object", + { + "172.17.1.180": [ + "object", + { + "access_key": "string", + "access_level": "string", + "access_to": "string", + "access_type": "string", + "id": "string", + "region": "string", + "share_id": "string", + "state": "string", + "timeouts": [ + "object", + { + "create": "string", + "delete": "string", + "update": "string" + } + ] + } + ], + "172.17.2.236": [ + "object", + { + "access_key": "string", + "access_level": "string", + "access_to": "string", + "access_type": "string", + "id": "string", + "region": "string", + "share_id": "string", + "state": "string", + "timeouts": [ + "object", + { + "create": "string", + "delete": "string", + "update": "string" + } + ] + } + ], + "172.17.3.65": [ + "object", + { + "access_key": "string", + "access_level": "string", + "access_to": "string", + "access_type": "string", + "id": "string", + "region": "string", + "share_id": "string", + "state": "string", + "timeouts": [ + "object", + { + "create": "string", + "delete": "string", + "update": "string" + } + ] + } + ] + } + ], + "sensitive": true + }, + "beacon_cora_pr_data_nfs_data_workers_acls": { + "value": { + "172.17.0.155": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.0.155", + "access_type": "ip", + "id": "9a8eeb4e-a834-4932-af05-c108333b35a0", + "region": "isti_area_pi_1", + "share_id": "dc258de0-0d49-4a90-ba8a-2df1331afdf0", + "state": "active", + "timeouts": null + }, + "172.17.1.142": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.142", + "access_type": "ip", + "id": "e6792436-7ece-4802-bf1a-12d7502210ba", + "region": "isti_area_pi_1", + "share_id": "dc258de0-0d49-4a90-ba8a-2df1331afdf0", + "state": "active", + "timeouts": null + }, + "172.17.1.185": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.185", + "access_type": "ip", + "id": "d36437d8-875f-4f1f-8faa-64f44e0493a8", + "region": "isti_area_pi_1", + "share_id": "dc258de0-0d49-4a90-ba8a-2df1331afdf0", + "state": "active", + "timeouts": null + }, + "172.17.1.62": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.62", + "access_type": "ip", + "id": "07f5fd15-8bd4-4b09-92c6-cbfc2e1a12ca", + "region": "isti_area_pi_1", + "share_id": "dc258de0-0d49-4a90-ba8a-2df1331afdf0", + "state": "active", + "timeouts": null + }, + "172.17.1.65": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.65", + "access_type": "ip", + "id": "e3158f01-b6b1-468d-a46e-369c9038db4f", + "region": "isti_area_pi_1", + "share_id": "dc258de0-0d49-4a90-ba8a-2df1331afdf0", + "state": "active", + "timeouts": null + }, + "172.17.3.251": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.3.251", + "access_type": "ip", + "id": "751b702e-5aed-4341-b3ff-8c549e31e898", + "region": "isti_area_pi_1", + "share_id": "dc258de0-0d49-4a90-ba8a-2df1331afdf0", + "state": "active", + "timeouts": null + }, + "172.17.3.55": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.3.55", + "access_type": "ip", + "id": "0f5fd202-2953-428e-92ec-3d5ef5faeed1", + "region": "isti_area_pi_1", + "share_id": "dc258de0-0d49-4a90-ba8a-2df1331afdf0", + "state": "active", + "timeouts": null + }, + "172.17.3.9": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.3.9", + "access_type": "ip", + "id": "5c3d5365-2107-44ff-a1fe-1d103fb256e2", + "region": "isti_area_pi_1", + "share_id": "dc258de0-0d49-4a90-ba8a-2df1331afdf0", + "state": "active", + "timeouts": null + } + }, + "type": [ + "object", + { + "172.17.0.155": [ + "object", + { + "access_key": "string", + "access_level": "string", + "access_to": "string", + "access_type": "string", + "id": "string", + "region": "string", + "share_id": "string", + "state": "string", + "timeouts": [ + "object", + { + "create": "string", + "delete": "string", + "update": "string" + } + ] + } + ], + "172.17.1.142": [ + "object", + { + "access_key": "string", + "access_level": "string", + "access_to": "string", + "access_type": "string", + "id": "string", + "region": "string", + "share_id": "string", + "state": "string", + "timeouts": [ + "object", + { + "create": "string", + "delete": "string", + "update": "string" + } + ] + } + ], + "172.17.1.185": [ + "object", + { + "access_key": "string", + "access_level": "string", + "access_to": "string", + "access_type": "string", + "id": "string", + "region": "string", + "share_id": "string", + "state": "string", + "timeouts": [ + "object", + { + "create": "string", + "delete": "string", + "update": "string" + } + ] + } + ], + "172.17.1.62": [ + "object", + { + "access_key": "string", + "access_level": "string", + "access_to": "string", + "access_type": "string", + "id": "string", + "region": "string", + "share_id": "string", + "state": "string", + "timeouts": [ + "object", + { + "create": "string", + "delete": "string", + "update": "string" + } + ] + } + ], + "172.17.1.65": [ + "object", + { + "access_key": "string", + "access_level": "string", + "access_to": "string", + "access_type": "string", + "id": "string", + "region": "string", + "share_id": "string", + "state": "string", + "timeouts": [ + "object", + { + "create": "string", + "delete": "string", + "update": "string" + } + ] + } + ], + "172.17.3.251": [ + "object", + { + "access_key": "string", + "access_level": "string", + "access_to": "string", + "access_type": "string", + "id": "string", + "region": "string", + "share_id": "string", + "state": "string", + "timeouts": [ + "object", + { + "create": "string", + "delete": "string", + "update": "string" + } + ] + } + ], + "172.17.3.55": [ + "object", + { + "access_key": "string", + "access_level": "string", + "access_to": "string", + "access_type": "string", + "id": "string", + "region": "string", + "share_id": "string", + "state": "string", + "timeouts": [ + "object", + { + "create": "string", + "delete": "string", + "update": "string" + } + ] + } + ], + "172.17.3.9": [ + "object", + { + "access_key": "string", + "access_level": "string", + "access_to": "string", + "access_type": "string", + "id": "string", + "region": "string", + "share_id": "string", + "state": "string", + "timeouts": [ + "object", + { + "create": "string", + "delete": "string", + "update": "string" + } + ] + } + ] + } + ], + "sensitive": true + }, + "beacon_cora_ts_data_nfs_data": { + "value": { + "all_metadata": {}, + "availability_zone": "nova", + "description": "NFS share for the Bluecloud beacon_cora_ts_data data volume", + "export_locations": [ + { + "path": "172.17.0.7:/volumes/_nogroup/ca2617d2-0ed5-4f9f-afdd-6f41c19da318/968c8ee1-9ec5-4521-aa08-99d678349299", + "preferred": "false" + } + ], + "has_replicas": false, + "host": "", + "id": "848b9786-308a-4b17-abc6-a2fd0dfd416a", + "is_public": false, + "metadata": null, + "name": "beacon_cora_ts_data", + "project_id": "1b45adf388934758b56d0dfdb4bfacf3", + "region": "isti_area_pi_1", + "replication_type": "", + "share_network_id": "", + "share_proto": "NFS", + "share_server_id": "", + "share_type": "default", + "size": 10, + "snapshot_id": "", + "timeouts": null + }, + "type": [ + "object", + { + "all_metadata": [ + "map", + "string" + ], + "availability_zone": "string", + "description": "string", + "export_locations": [ + "list", + [ + "object", + { + "path": "string", + "preferred": "string" + } + ] + ], + "has_replicas": "bool", + "host": "string", + "id": "string", + "is_public": "bool", + "metadata": [ + "map", + "string" + ], + "name": "string", + "project_id": "string", + "region": "string", + "replication_type": "string", + "share_network_id": "string", + "share_proto": "string", + "share_server_id": "string", + "share_type": "string", + "size": "number", + "snapshot_id": "string", + "timeouts": [ + "object", + { + "create": "string", + "delete": "string", + "update": "string" + } + ] + } + ] + }, + "beacon_cora_ts_data_nfs_data_mgr_acls": { + "value": { + "172.17.1.180": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.180", + "access_type": "ip", + "id": "45ca4a7d-7639-49a2-aee3-3b1d7d32c503", + "region": "isti_area_pi_1", + "share_id": "848b9786-308a-4b17-abc6-a2fd0dfd416a", + "state": "active", + "timeouts": null + }, + "172.17.2.236": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.2.236", + "access_type": "ip", + "id": "40afcc35-655c-454c-aa11-d92d7c12d2fd", + "region": "isti_area_pi_1", + "share_id": "848b9786-308a-4b17-abc6-a2fd0dfd416a", + "state": "active", + "timeouts": null + }, + "172.17.3.65": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.3.65", + "access_type": "ip", + "id": "0468526a-462a-4220-8988-135f18d41786", + "region": "isti_area_pi_1", + "share_id": "848b9786-308a-4b17-abc6-a2fd0dfd416a", + "state": "active", + "timeouts": null + } + }, + "type": [ + "object", + { + "172.17.1.180": [ + "object", + { + "access_key": "string", + "access_level": "string", + "access_to": "string", + "access_type": "string", + "id": "string", + "region": "string", + "share_id": "string", + "state": "string", + "timeouts": [ + "object", + { + "create": "string", + "delete": "string", + "update": "string" + } + ] + } + ], + "172.17.2.236": [ + "object", + { + "access_key": "string", + "access_level": "string", + "access_to": "string", + "access_type": "string", + "id": "string", + "region": "string", + "share_id": "string", + "state": "string", + "timeouts": [ + "object", + { + "create": "string", + "delete": "string", + "update": "string" + } + ] + } + ], + "172.17.3.65": [ + "object", + { + "access_key": "string", + "access_level": "string", + "access_to": "string", + "access_type": "string", + "id": "string", + "region": "string", + "share_id": "string", + "state": "string", + "timeouts": [ + "object", + { + "create": "string", + "delete": "string", + "update": "string" + } + ] + } + ] + } + ], + "sensitive": true + }, + "beacon_cora_ts_data_nfs_data_workers_acls": { + "value": { + "172.17.0.155": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.0.155", + "access_type": "ip", + "id": "9c6b0cb7-cd8f-4d83-895c-c160ee84b5cc", + "region": "isti_area_pi_1", + "share_id": "848b9786-308a-4b17-abc6-a2fd0dfd416a", + "state": "active", + "timeouts": null + }, + "172.17.1.142": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.142", + "access_type": "ip", + "id": "48203da4-a1c4-428e-ae7f-535b8567add1", + "region": "isti_area_pi_1", + "share_id": "848b9786-308a-4b17-abc6-a2fd0dfd416a", + "state": "active", + "timeouts": null + }, + "172.17.1.185": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.185", + "access_type": "ip", + "id": "81c09d7b-7faa-45b9-8630-ad26e59778a8", + "region": "isti_area_pi_1", + "share_id": "848b9786-308a-4b17-abc6-a2fd0dfd416a", + "state": "active", + "timeouts": null + }, + "172.17.1.62": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.62", + "access_type": "ip", + "id": "6094181e-13ff-4585-b15f-40ed1dcb73ca", + "region": "isti_area_pi_1", + "share_id": "848b9786-308a-4b17-abc6-a2fd0dfd416a", + "state": "active", + "timeouts": null + }, + "172.17.1.65": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.65", + "access_type": "ip", + "id": "1d065da5-0f4f-4524-b4e6-62ea2ef21838", + "region": "isti_area_pi_1", + "share_id": "848b9786-308a-4b17-abc6-a2fd0dfd416a", + "state": "active", + "timeouts": null + }, + "172.17.3.251": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.3.251", + "access_type": "ip", + "id": "9ccb8308-f9bd-4067-8e96-0783e461d029", + "region": "isti_area_pi_1", + "share_id": "848b9786-308a-4b17-abc6-a2fd0dfd416a", + "state": "active", + "timeouts": null + }, + "172.17.3.55": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.3.55", + "access_type": "ip", + "id": "980ed81f-d423-4c57-8686-00b56bb6f042", + "region": "isti_area_pi_1", + "share_id": "848b9786-308a-4b17-abc6-a2fd0dfd416a", + "state": "active", + "timeouts": null + }, + "172.17.3.9": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.3.9", + "access_type": "ip", + "id": "ae225b25-ea02-4009-adc8-8d697034a4fb", + "region": "isti_area_pi_1", + "share_id": "848b9786-308a-4b17-abc6-a2fd0dfd416a", + "state": "active", + "timeouts": null + } + }, + "type": [ + "object", + { + "172.17.0.155": [ + "object", + { + "access_key": "string", + "access_level": "string", + "access_to": "string", + "access_type": "string", + "id": "string", + "region": "string", + "share_id": "string", + "state": "string", + "timeouts": [ + "object", + { + "create": "string", + "delete": "string", + "update": "string" + } + ] + } + ], + "172.17.1.142": [ + "object", + { + "access_key": "string", + "access_level": "string", + "access_to": "string", + "access_type": "string", + "id": "string", + "region": "string", + "share_id": "string", + "state": "string", + "timeouts": [ + "object", + { + "create": "string", + "delete": "string", + "update": "string" + } + ] + } + ], + "172.17.1.185": [ + "object", + { + "access_key": "string", + "access_level": "string", + "access_to": "string", + "access_type": "string", + "id": "string", + "region": "string", + "share_id": "string", + "state": "string", + "timeouts": [ + "object", + { + "create": "string", + "delete": "string", + "update": "string" + } + ] + } + ], + "172.17.1.62": [ + "object", + { + "access_key": "string", + "access_level": "string", + "access_to": "string", + "access_type": "string", + "id": "string", + "region": "string", + "share_id": "string", + "state": "string", + "timeouts": [ + "object", + { + "create": "string", + "delete": "string", + "update": "string" + } + ] + } + ], + "172.17.1.65": [ + "object", + { + "access_key": "string", + "access_level": "string", + "access_to": "string", + "access_type": "string", + "id": "string", + "region": "string", + "share_id": "string", + "state": "string", + "timeouts": [ + "object", + { + "create": "string", + "delete": "string", + "update": "string" + } + ] + } + ], + "172.17.3.251": [ + "object", + { + "access_key": "string", + "access_level": "string", + "access_to": "string", + "access_type": "string", + "id": "string", + "region": "string", + "share_id": "string", + "state": "string", + "timeouts": [ + "object", + { + "create": "string", + "delete": "string", + "update": "string" + } + ] + } + ], + "172.17.3.55": [ + "object", + { + "access_key": "string", + "access_level": "string", + "access_to": "string", + "access_type": "string", + "id": "string", + "region": "string", + "share_id": "string", + "state": "string", + "timeouts": [ + "object", + { + "create": "string", + "delete": "string", + "update": "string" + } + ] + } + ], + "172.17.3.9": [ + "object", + { + "access_key": "string", + "access_level": "string", + "access_to": "string", + "access_type": "string", + "id": "string", + "region": "string", + "share_id": "string", + "state": "string", + "timeouts": [ + "object", + { + "create": "string", + "delete": "string", + "update": "string" + } + ] + } + ] + } + ], + "sensitive": true + }, "beacon_emodnet_chemistry_nfs_data": { "value": { "all_metadata": {}, @@ -900,6 +2244,454 @@ ], "sensitive": true }, + "beacon_seadatanet_data_nfs_data": { + "value": { + "all_metadata": {}, + "availability_zone": "nova", + "description": "NFS share for the Bluecloud beacon_seadatanet_data data volume", + "export_locations": [ + { + "path": "172.17.0.7:/volumes/_nogroup/345d9dc9-2f7b-40d1-9ade-9be432120fa0/510d40ea-6ce4-4144-85c5-75132e5d66ef", + "preferred": "false" + } + ], + "has_replicas": false, + "host": "", + "id": "4485ff1e-a2b7-41b7-9b50-d7f013988908", + "is_public": false, + "metadata": null, + "name": "beacon_seadatanet_data", + "project_id": "1b45adf388934758b56d0dfdb4bfacf3", + "region": "isti_area_pi_1", + "replication_type": "", + "share_network_id": "", + "share_proto": "NFS", + "share_server_id": "", + "share_type": "default", + "size": 10, + "snapshot_id": "", + "timeouts": null + }, + "type": [ + "object", + { + "all_metadata": [ + "map", + "string" + ], + "availability_zone": "string", + "description": "string", + "export_locations": [ + "list", + [ + "object", + { + "path": "string", + "preferred": "string" + } + ] + ], + "has_replicas": "bool", + "host": "string", + "id": "string", + "is_public": "bool", + "metadata": [ + "map", + "string" + ], + "name": "string", + "project_id": "string", + "region": "string", + "replication_type": "string", + "share_network_id": "string", + "share_proto": "string", + "share_server_id": "string", + "share_type": "string", + "size": "number", + "snapshot_id": "string", + "timeouts": [ + "object", + { + "create": "string", + "delete": "string", + "update": "string" + } + ] + } + ] + }, + "beacon_seadatanet_data_nfs_data_mgr_acls": { + "value": { + "172.17.1.180": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.180", + "access_type": "ip", + "id": "e6e233aa-721c-453b-8faf-846bfbbba75e", + "region": "isti_area_pi_1", + "share_id": "4485ff1e-a2b7-41b7-9b50-d7f013988908", + "state": "active", + "timeouts": null + }, + "172.17.2.236": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.2.236", + "access_type": "ip", + "id": "2d936b96-ced3-4b6b-ae92-74189fde360f", + "region": "isti_area_pi_1", + "share_id": "4485ff1e-a2b7-41b7-9b50-d7f013988908", + "state": "active", + "timeouts": null + }, + "172.17.3.65": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.3.65", + "access_type": "ip", + "id": "77386bb9-148a-4530-9354-c5850429e971", + "region": "isti_area_pi_1", + "share_id": "4485ff1e-a2b7-41b7-9b50-d7f013988908", + "state": "active", + "timeouts": null + } + }, + "type": [ + "object", + { + "172.17.1.180": [ + "object", + { + "access_key": "string", + "access_level": "string", + "access_to": "string", + "access_type": "string", + "id": "string", + "region": "string", + "share_id": "string", + "state": "string", + "timeouts": [ + "object", + { + "create": "string", + "delete": "string", + "update": "string" + } + ] + } + ], + "172.17.2.236": [ + "object", + { + "access_key": "string", + "access_level": "string", + "access_to": "string", + "access_type": "string", + "id": "string", + "region": "string", + "share_id": "string", + "state": "string", + "timeouts": [ + "object", + { + "create": "string", + "delete": "string", + "update": "string" + } + ] + } + ], + "172.17.3.65": [ + "object", + { + "access_key": "string", + "access_level": "string", + "access_to": "string", + "access_type": "string", + "id": "string", + "region": "string", + "share_id": "string", + "state": "string", + "timeouts": [ + "object", + { + "create": "string", + "delete": "string", + "update": "string" + } + ] + } + ] + } + ], + "sensitive": true + }, + "beacon_seadatanet_data_nfs_data_workers_acls": { + "value": { + "172.17.0.155": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.0.155", + "access_type": "ip", + "id": "650a848e-700d-43ea-bbd5-84a6cc971df0", + "region": "isti_area_pi_1", + "share_id": "4485ff1e-a2b7-41b7-9b50-d7f013988908", + "state": "active", + "timeouts": null + }, + "172.17.1.142": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.142", + "access_type": "ip", + "id": "33b35153-3b77-40a0-a982-2a4275b87be2", + "region": "isti_area_pi_1", + "share_id": "4485ff1e-a2b7-41b7-9b50-d7f013988908", + "state": "active", + "timeouts": null + }, + "172.17.1.185": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.185", + "access_type": "ip", + "id": "09426093-5d8e-4ca0-bdfc-e2bcf27935c1", + "region": "isti_area_pi_1", + "share_id": "4485ff1e-a2b7-41b7-9b50-d7f013988908", + "state": "active", + "timeouts": null + }, + "172.17.1.62": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.62", + "access_type": "ip", + "id": "f57d8c84-39a3-48a9-bc22-717d0db2e747", + "region": "isti_area_pi_1", + "share_id": "4485ff1e-a2b7-41b7-9b50-d7f013988908", + "state": "active", + "timeouts": null + }, + "172.17.1.65": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.65", + "access_type": "ip", + "id": "6d99b6ac-2df6-4d57-888a-0acd2bff39d7", + "region": "isti_area_pi_1", + "share_id": "4485ff1e-a2b7-41b7-9b50-d7f013988908", + "state": "active", + "timeouts": null + }, + "172.17.3.251": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.3.251", + "access_type": "ip", + "id": "55d22b90-aa75-4700-a591-9807e06c7097", + "region": "isti_area_pi_1", + "share_id": "4485ff1e-a2b7-41b7-9b50-d7f013988908", + "state": "active", + "timeouts": null + }, + "172.17.3.55": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.3.55", + "access_type": "ip", + "id": "c736cfcf-ca0d-4863-8998-ca421e75ff63", + "region": "isti_area_pi_1", + "share_id": "4485ff1e-a2b7-41b7-9b50-d7f013988908", + "state": "active", + "timeouts": null + }, + "172.17.3.9": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.3.9", + "access_type": "ip", + "id": "5815bdc3-cb60-41eb-948e-af2c52191134", + "region": "isti_area_pi_1", + "share_id": "4485ff1e-a2b7-41b7-9b50-d7f013988908", + "state": "active", + "timeouts": null + } + }, + "type": [ + "object", + { + "172.17.0.155": [ + "object", + { + "access_key": "string", + "access_level": "string", + "access_to": "string", + "access_type": "string", + "id": "string", + "region": "string", + "share_id": "string", + "state": "string", + "timeouts": [ + "object", + { + "create": "string", + "delete": "string", + "update": "string" + } + ] + } + ], + "172.17.1.142": [ + "object", + { + "access_key": "string", + "access_level": "string", + "access_to": "string", + "access_type": "string", + "id": "string", + "region": "string", + "share_id": "string", + "state": "string", + "timeouts": [ + "object", + { + "create": "string", + "delete": "string", + "update": "string" + } + ] + } + ], + "172.17.1.185": [ + "object", + { + "access_key": "string", + "access_level": "string", + "access_to": "string", + "access_type": "string", + "id": "string", + "region": "string", + "share_id": "string", + "state": "string", + "timeouts": [ + "object", + { + "create": "string", + "delete": "string", + "update": "string" + } + ] + } + ], + "172.17.1.62": [ + "object", + { + "access_key": "string", + "access_level": "string", + "access_to": "string", + "access_type": "string", + "id": "string", + "region": "string", + "share_id": "string", + "state": "string", + "timeouts": [ + "object", + { + "create": "string", + "delete": "string", + "update": "string" + } + ] + } + ], + "172.17.1.65": [ + "object", + { + "access_key": "string", + "access_level": "string", + "access_to": "string", + "access_type": "string", + "id": "string", + "region": "string", + "share_id": "string", + "state": "string", + "timeouts": [ + "object", + { + "create": "string", + "delete": "string", + "update": "string" + } + ] + } + ], + "172.17.3.251": [ + "object", + { + "access_key": "string", + "access_level": "string", + "access_to": "string", + "access_type": "string", + "id": "string", + "region": "string", + "share_id": "string", + "state": "string", + "timeouts": [ + "object", + { + "create": "string", + "delete": "string", + "update": "string" + } + ] + } + ], + "172.17.3.55": [ + "object", + { + "access_key": "string", + "access_level": "string", + "access_to": "string", + "access_type": "string", + "id": "string", + "region": "string", + "share_id": "string", + "state": "string", + "timeouts": [ + "object", + { + "create": "string", + "delete": "string", + "update": "string" + } + ] + } + ], + "172.17.3.9": [ + "object", + { + "access_key": "string", + "access_level": "string", + "access_to": "string", + "access_type": "string", + "id": "string", + "region": "string", + "share_id": "string", + "state": "string", + "timeouts": [ + "object", + { + "create": "string", + "delete": "string", + "update": "string" + } + ] + } + ] + } + ], + "sensitive": true + }, "beacon_wod_data_nfs_data": { "value": { "all_metadata": {}, @@ -6537,6 +8329,253 @@ } ] }, + { + "mode": "managed", + "type": "openstack_sharedfilesystem_share_access_v2", + "name": "beacon_argo_data_mgr_share_access", + "provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]", + "instances": [ + { + "index_key": "172.17.1.180", + "schema_version": 0, + "attributes": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.180", + "access_type": "ip", + "id": "14cd85cd-e2cc-4d0f-ac28-e5bf4f3f835e", + "region": "isti_area_pi_1", + "share_id": "d9345418-68c9-48d1-a0a8-c08cc6452978", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.beacon_argo_data" + ] + }, + { + "index_key": "172.17.2.236", + "schema_version": 0, + "attributes": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.2.236", + "access_type": "ip", + "id": "ade2813a-d687-43c0-b898-3b71f2293634", + "region": "isti_area_pi_1", + "share_id": "d9345418-68c9-48d1-a0a8-c08cc6452978", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.beacon_argo_data" + ] + }, + { + "index_key": "172.17.3.65", + "schema_version": 0, + "attributes": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.3.65", + "access_type": "ip", + "id": "a3feabba-60ea-458a-9f7d-5dc4ed2323d4", + "region": "isti_area_pi_1", + "share_id": "d9345418-68c9-48d1-a0a8-c08cc6452978", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.beacon_argo_data" + ] + } + ] + }, + { + "mode": "managed", + "type": "openstack_sharedfilesystem_share_access_v2", + "name": "beacon_argo_data_workers_share_access", + "provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]", + "instances": [ + { + "index_key": "172.17.0.155", + "schema_version": 0, + "attributes": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.0.155", + "access_type": "ip", + "id": "7dbf6017-bfc6-4b92-8547-625180db9e37", + "region": "isti_area_pi_1", + "share_id": "d9345418-68c9-48d1-a0a8-c08cc6452978", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.beacon_argo_data" + ] + }, + { + "index_key": "172.17.1.142", + "schema_version": 0, + "attributes": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.142", + "access_type": "ip", + "id": "07116b2a-557a-4b15-96f8-52512cd0710d", + "region": "isti_area_pi_1", + "share_id": "d9345418-68c9-48d1-a0a8-c08cc6452978", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.beacon_argo_data" + ] + }, + { + "index_key": "172.17.1.185", + "schema_version": 0, + "attributes": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.185", + "access_type": "ip", + "id": "b3729505-3928-4fa3-a26f-518052732e00", + "region": "isti_area_pi_1", + "share_id": "d9345418-68c9-48d1-a0a8-c08cc6452978", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.beacon_argo_data" + ] + }, + { + "index_key": "172.17.1.62", + "schema_version": 0, + "attributes": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.62", + "access_type": "ip", + "id": "432ee534-c787-4c38-9c26-095f8c83383c", + "region": "isti_area_pi_1", + "share_id": "d9345418-68c9-48d1-a0a8-c08cc6452978", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.beacon_argo_data" + ] + }, + { + "index_key": "172.17.1.65", + "schema_version": 0, + "attributes": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.65", + "access_type": "ip", + "id": "d294740f-2ae3-46ac-b495-760a2d52043c", + "region": "isti_area_pi_1", + "share_id": "d9345418-68c9-48d1-a0a8-c08cc6452978", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.beacon_argo_data" + ] + }, + { + "index_key": "172.17.3.251", + "schema_version": 0, + "attributes": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.3.251", + "access_type": "ip", + "id": "c97b142e-4d74-45f3-9295-b1c5b4c51be4", + "region": "isti_area_pi_1", + "share_id": "d9345418-68c9-48d1-a0a8-c08cc6452978", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.beacon_argo_data" + ] + }, + { + "index_key": "172.17.3.55", + "schema_version": 0, + "attributes": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.3.55", + "access_type": "ip", + "id": "9c7d76db-7f03-40a9-9278-913bceadde38", + "region": "isti_area_pi_1", + "share_id": "d9345418-68c9-48d1-a0a8-c08cc6452978", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.beacon_argo_data" + ] + }, + { + "index_key": "172.17.3.9", + "schema_version": 0, + "attributes": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.3.9", + "access_type": "ip", + "id": "7c75dbe4-b0a3-4db6-9e88-5486c276957f", + "region": "isti_area_pi_1", + "share_id": "d9345418-68c9-48d1-a0a8-c08cc6452978", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.beacon_argo_data" + ] + } + ] + }, { "mode": "managed", "type": "openstack_sharedfilesystem_share_access_v2", @@ -6784,6 +8823,500 @@ } ] }, + { + "mode": "managed", + "type": "openstack_sharedfilesystem_share_access_v2", + "name": "beacon_cora_pr_data_mgr_share_access", + "provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]", + "instances": [ + { + "index_key": "172.17.1.180", + "schema_version": 0, + "attributes": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.180", + "access_type": "ip", + "id": "e24f7353-d3c7-46f8-ba47-b60e97e54a3a", + "region": "isti_area_pi_1", + "share_id": "dc258de0-0d49-4a90-ba8a-2df1331afdf0", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.beacon_cora_pr_data" + ] + }, + { + "index_key": "172.17.2.236", + "schema_version": 0, + "attributes": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.2.236", + "access_type": "ip", + "id": "cd78426c-8fef-46d6-b42e-e10cce8fb030", + "region": "isti_area_pi_1", + "share_id": "dc258de0-0d49-4a90-ba8a-2df1331afdf0", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.beacon_cora_pr_data" + ] + }, + { + "index_key": "172.17.3.65", + "schema_version": 0, + "attributes": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.3.65", + "access_type": "ip", + "id": "de5696ff-5ed8-489c-ad4c-6aebc43aabc9", + "region": "isti_area_pi_1", + "share_id": "dc258de0-0d49-4a90-ba8a-2df1331afdf0", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.beacon_cora_pr_data" + ] + } + ] + }, + { + "mode": "managed", + "type": "openstack_sharedfilesystem_share_access_v2", + "name": "beacon_cora_pr_data_workers_share_access", + "provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]", + "instances": [ + { + "index_key": "172.17.0.155", + "schema_version": 0, + "attributes": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.0.155", + "access_type": "ip", + "id": "9a8eeb4e-a834-4932-af05-c108333b35a0", + "region": "isti_area_pi_1", + "share_id": "dc258de0-0d49-4a90-ba8a-2df1331afdf0", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.beacon_cora_pr_data" + ] + }, + { + "index_key": "172.17.1.142", + "schema_version": 0, + "attributes": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.142", + "access_type": "ip", + "id": "e6792436-7ece-4802-bf1a-12d7502210ba", + "region": "isti_area_pi_1", + "share_id": "dc258de0-0d49-4a90-ba8a-2df1331afdf0", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.beacon_cora_pr_data" + ] + }, + { + "index_key": "172.17.1.185", + "schema_version": 0, + "attributes": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.185", + "access_type": "ip", + "id": "d36437d8-875f-4f1f-8faa-64f44e0493a8", + "region": "isti_area_pi_1", + "share_id": "dc258de0-0d49-4a90-ba8a-2df1331afdf0", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.beacon_cora_pr_data" + ] + }, + { + "index_key": "172.17.1.62", + "schema_version": 0, + "attributes": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.62", + "access_type": "ip", + "id": "07f5fd15-8bd4-4b09-92c6-cbfc2e1a12ca", + "region": "isti_area_pi_1", + "share_id": "dc258de0-0d49-4a90-ba8a-2df1331afdf0", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.beacon_cora_pr_data" + ] + }, + { + "index_key": "172.17.1.65", + "schema_version": 0, + "attributes": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.65", + "access_type": "ip", + "id": "e3158f01-b6b1-468d-a46e-369c9038db4f", + "region": "isti_area_pi_1", + "share_id": "dc258de0-0d49-4a90-ba8a-2df1331afdf0", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.beacon_cora_pr_data" + ] + }, + { + "index_key": "172.17.3.251", + "schema_version": 0, + "attributes": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.3.251", + "access_type": "ip", + "id": "751b702e-5aed-4341-b3ff-8c549e31e898", + "region": "isti_area_pi_1", + "share_id": "dc258de0-0d49-4a90-ba8a-2df1331afdf0", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.beacon_cora_pr_data" + ] + }, + { + "index_key": "172.17.3.55", + "schema_version": 0, + "attributes": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.3.55", + "access_type": "ip", + "id": "0f5fd202-2953-428e-92ec-3d5ef5faeed1", + "region": "isti_area_pi_1", + "share_id": "dc258de0-0d49-4a90-ba8a-2df1331afdf0", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.beacon_cora_pr_data" + ] + }, + { + "index_key": "172.17.3.9", + "schema_version": 0, + "attributes": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.3.9", + "access_type": "ip", + "id": "5c3d5365-2107-44ff-a1fe-1d103fb256e2", + "region": "isti_area_pi_1", + "share_id": "dc258de0-0d49-4a90-ba8a-2df1331afdf0", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.beacon_cora_pr_data" + ] + } + ] + }, + { + "mode": "managed", + "type": "openstack_sharedfilesystem_share_access_v2", + "name": "beacon_cora_ts_data_mgr_share_access", + "provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]", + "instances": [ + { + "index_key": "172.17.1.180", + "schema_version": 0, + "attributes": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.180", + "access_type": "ip", + "id": "45ca4a7d-7639-49a2-aee3-3b1d7d32c503", + "region": "isti_area_pi_1", + "share_id": "848b9786-308a-4b17-abc6-a2fd0dfd416a", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.beacon_cora_ts_data" + ] + }, + { + "index_key": "172.17.2.236", + "schema_version": 0, + "attributes": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.2.236", + "access_type": "ip", + "id": "40afcc35-655c-454c-aa11-d92d7c12d2fd", + "region": "isti_area_pi_1", + "share_id": "848b9786-308a-4b17-abc6-a2fd0dfd416a", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.beacon_cora_ts_data" + ] + }, + { + "index_key": "172.17.3.65", + "schema_version": 0, + "attributes": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.3.65", + "access_type": "ip", + "id": "0468526a-462a-4220-8988-135f18d41786", + "region": "isti_area_pi_1", + "share_id": "848b9786-308a-4b17-abc6-a2fd0dfd416a", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.beacon_cora_ts_data" + ] + } + ] + }, + { + "mode": "managed", + "type": "openstack_sharedfilesystem_share_access_v2", + "name": "beacon_cora_ts_data_workers_share_access", + "provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]", + "instances": [ + { + "index_key": "172.17.0.155", + "schema_version": 0, + "attributes": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.0.155", + "access_type": "ip", + "id": "9c6b0cb7-cd8f-4d83-895c-c160ee84b5cc", + "region": "isti_area_pi_1", + "share_id": "848b9786-308a-4b17-abc6-a2fd0dfd416a", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.beacon_cora_ts_data" + ] + }, + { + "index_key": "172.17.1.142", + "schema_version": 0, + "attributes": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.142", + "access_type": "ip", + "id": "48203da4-a1c4-428e-ae7f-535b8567add1", + "region": "isti_area_pi_1", + "share_id": "848b9786-308a-4b17-abc6-a2fd0dfd416a", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.beacon_cora_ts_data" + ] + }, + { + "index_key": "172.17.1.185", + "schema_version": 0, + "attributes": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.185", + "access_type": "ip", + "id": "81c09d7b-7faa-45b9-8630-ad26e59778a8", + "region": "isti_area_pi_1", + "share_id": "848b9786-308a-4b17-abc6-a2fd0dfd416a", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.beacon_cora_ts_data" + ] + }, + { + "index_key": "172.17.1.62", + "schema_version": 0, + "attributes": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.62", + "access_type": "ip", + "id": "6094181e-13ff-4585-b15f-40ed1dcb73ca", + "region": "isti_area_pi_1", + "share_id": "848b9786-308a-4b17-abc6-a2fd0dfd416a", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.beacon_cora_ts_data" + ] + }, + { + "index_key": "172.17.1.65", + "schema_version": 0, + "attributes": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.65", + "access_type": "ip", + "id": "1d065da5-0f4f-4524-b4e6-62ea2ef21838", + "region": "isti_area_pi_1", + "share_id": "848b9786-308a-4b17-abc6-a2fd0dfd416a", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.beacon_cora_ts_data" + ] + }, + { + "index_key": "172.17.3.251", + "schema_version": 0, + "attributes": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.3.251", + "access_type": "ip", + "id": "9ccb8308-f9bd-4067-8e96-0783e461d029", + "region": "isti_area_pi_1", + "share_id": "848b9786-308a-4b17-abc6-a2fd0dfd416a", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.beacon_cora_ts_data" + ] + }, + { + "index_key": "172.17.3.55", + "schema_version": 0, + "attributes": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.3.55", + "access_type": "ip", + "id": "980ed81f-d423-4c57-8686-00b56bb6f042", + "region": "isti_area_pi_1", + "share_id": "848b9786-308a-4b17-abc6-a2fd0dfd416a", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.beacon_cora_ts_data" + ] + }, + { + "index_key": "172.17.3.9", + "schema_version": 0, + "attributes": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.3.9", + "access_type": "ip", + "id": "ae225b25-ea02-4009-adc8-8d697034a4fb", + "region": "isti_area_pi_1", + "share_id": "848b9786-308a-4b17-abc6-a2fd0dfd416a", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.beacon_cora_ts_data" + ] + } + ] + }, { "mode": "managed", "type": "openstack_sharedfilesystem_share_access_v2", @@ -7031,6 +9564,253 @@ } ] }, + { + "mode": "managed", + "type": "openstack_sharedfilesystem_share_access_v2", + "name": "beacon_seadatanet_data_mgr_share_access", + "provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]", + "instances": [ + { + "index_key": "172.17.1.180", + "schema_version": 0, + "attributes": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.180", + "access_type": "ip", + "id": "e6e233aa-721c-453b-8faf-846bfbbba75e", + "region": "isti_area_pi_1", + "share_id": "4485ff1e-a2b7-41b7-9b50-d7f013988908", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.beacon_seadatanet_data" + ] + }, + { + "index_key": "172.17.2.236", + "schema_version": 0, + "attributes": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.2.236", + "access_type": "ip", + "id": "2d936b96-ced3-4b6b-ae92-74189fde360f", + "region": "isti_area_pi_1", + "share_id": "4485ff1e-a2b7-41b7-9b50-d7f013988908", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.beacon_seadatanet_data" + ] + }, + { + "index_key": "172.17.3.65", + "schema_version": 0, + "attributes": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.3.65", + "access_type": "ip", + "id": "77386bb9-148a-4530-9354-c5850429e971", + "region": "isti_area_pi_1", + "share_id": "4485ff1e-a2b7-41b7-9b50-d7f013988908", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.beacon_seadatanet_data" + ] + } + ] + }, + { + "mode": "managed", + "type": "openstack_sharedfilesystem_share_access_v2", + "name": "beacon_seadatanet_data_workers_share_access", + "provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]", + "instances": [ + { + "index_key": "172.17.0.155", + "schema_version": 0, + "attributes": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.0.155", + "access_type": "ip", + "id": "650a848e-700d-43ea-bbd5-84a6cc971df0", + "region": "isti_area_pi_1", + "share_id": "4485ff1e-a2b7-41b7-9b50-d7f013988908", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.beacon_seadatanet_data" + ] + }, + { + "index_key": "172.17.1.142", + "schema_version": 0, + "attributes": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.142", + "access_type": "ip", + "id": "33b35153-3b77-40a0-a982-2a4275b87be2", + "region": "isti_area_pi_1", + "share_id": "4485ff1e-a2b7-41b7-9b50-d7f013988908", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.beacon_seadatanet_data" + ] + }, + { + "index_key": "172.17.1.185", + "schema_version": 0, + "attributes": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.185", + "access_type": "ip", + "id": "09426093-5d8e-4ca0-bdfc-e2bcf27935c1", + "region": "isti_area_pi_1", + "share_id": "4485ff1e-a2b7-41b7-9b50-d7f013988908", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.beacon_seadatanet_data" + ] + }, + { + "index_key": "172.17.1.62", + "schema_version": 0, + "attributes": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.62", + "access_type": "ip", + "id": "f57d8c84-39a3-48a9-bc22-717d0db2e747", + "region": "isti_area_pi_1", + "share_id": "4485ff1e-a2b7-41b7-9b50-d7f013988908", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.beacon_seadatanet_data" + ] + }, + { + "index_key": "172.17.1.65", + "schema_version": 0, + "attributes": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.65", + "access_type": "ip", + "id": "6d99b6ac-2df6-4d57-888a-0acd2bff39d7", + "region": "isti_area_pi_1", + "share_id": "4485ff1e-a2b7-41b7-9b50-d7f013988908", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.beacon_seadatanet_data" + ] + }, + { + "index_key": "172.17.3.251", + "schema_version": 0, + "attributes": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.3.251", + "access_type": "ip", + "id": "55d22b90-aa75-4700-a591-9807e06c7097", + "region": "isti_area_pi_1", + "share_id": "4485ff1e-a2b7-41b7-9b50-d7f013988908", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.beacon_seadatanet_data" + ] + }, + { + "index_key": "172.17.3.55", + "schema_version": 0, + "attributes": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.3.55", + "access_type": "ip", + "id": "c736cfcf-ca0d-4863-8998-ca421e75ff63", + "region": "isti_area_pi_1", + "share_id": "4485ff1e-a2b7-41b7-9b50-d7f013988908", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.beacon_seadatanet_data" + ] + }, + { + "index_key": "172.17.3.9", + "schema_version": 0, + "attributes": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.3.9", + "access_type": "ip", + "id": "5815bdc3-cb60-41eb-948e-af2c52191134", + "region": "isti_area_pi_1", + "share_id": "4485ff1e-a2b7-41b7-9b50-d7f013988908", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.beacon_seadatanet_data" + ] + } + ] + }, { "mode": "managed", "type": "openstack_sharedfilesystem_share_access_v2", @@ -7278,6 +10058,46 @@ } ] }, + { + "mode": "managed", + "type": "openstack_sharedfilesystem_share_v2", + "name": "beacon_argo_data", + "provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]", + "instances": [ + { + "schema_version": 0, + "attributes": { + "all_metadata": {}, + "availability_zone": "nova", + "description": "NFS share for the Bluecloud beacon_argo_data data volume", + "export_locations": [ + { + "path": "172.17.0.7:/volumes/_nogroup/41556394-f093-410e-be1e-cb77ebb101ca/9e3f1dc0-dc18-4083-a3cb-1d251d3433b0", + "preferred": "false" + } + ], + "has_replicas": false, + "host": "", + "id": "d9345418-68c9-48d1-a0a8-c08cc6452978", + "is_public": false, + "metadata": null, + "name": "beacon_argo_data", + "project_id": "1b45adf388934758b56d0dfdb4bfacf3", + "region": "isti_area_pi_1", + "replication_type": "", + "share_network_id": "", + "share_proto": "NFS", + "share_server_id": "", + "share_type": "default", + "size": 10, + "snapshot_id": "", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19" + } + ] + }, { "mode": "managed", "type": "openstack_sharedfilesystem_share_v2", @@ -7309,6 +10129,86 @@ "share_proto": "NFS", "share_server_id": "", "share_type": "default", + "size": 36, + "snapshot_id": "", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19" + } + ] + }, + { + "mode": "managed", + "type": "openstack_sharedfilesystem_share_v2", + "name": "beacon_cora_pr_data", + "provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]", + "instances": [ + { + "schema_version": 0, + "attributes": { + "all_metadata": {}, + "availability_zone": "nova", + "description": "NFS share for the Bluecloud beacon_cora_pr_data data volume", + "export_locations": [ + { + "path": "172.17.0.7:/volumes/_nogroup/f99c3105-3c9c-4f9d-ad95-9277b4fd7636/e102422c-0827-4cb9-916f-d21667c80e34", + "preferred": "false" + } + ], + "has_replicas": false, + "host": "", + "id": "dc258de0-0d49-4a90-ba8a-2df1331afdf0", + "is_public": false, + "metadata": null, + "name": "beacon_cora_pr_data", + "project_id": "1b45adf388934758b56d0dfdb4bfacf3", + "region": "isti_area_pi_1", + "replication_type": "", + "share_network_id": "", + "share_proto": "NFS", + "share_server_id": "", + "share_type": "default", + "size": 10, + "snapshot_id": "", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19" + } + ] + }, + { + "mode": "managed", + "type": "openstack_sharedfilesystem_share_v2", + "name": "beacon_cora_ts_data", + "provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]", + "instances": [ + { + "schema_version": 0, + "attributes": { + "all_metadata": {}, + "availability_zone": "nova", + "description": "NFS share for the Bluecloud beacon_cora_ts_data data volume", + "export_locations": [ + { + "path": "172.17.0.7:/volumes/_nogroup/ca2617d2-0ed5-4f9f-afdd-6f41c19da318/968c8ee1-9ec5-4521-aa08-99d678349299", + "preferred": "false" + } + ], + "has_replicas": false, + "host": "", + "id": "848b9786-308a-4b17-abc6-a2fd0dfd416a", + "is_public": false, + "metadata": null, + "name": "beacon_cora_ts_data", + "project_id": "1b45adf388934758b56d0dfdb4bfacf3", + "region": "isti_area_pi_1", + "replication_type": "", + "share_network_id": "", + "share_proto": "NFS", + "share_server_id": "", + "share_type": "default", "size": 10, "snapshot_id": "", "timeouts": null @@ -7358,6 +10258,46 @@ } ] }, + { + "mode": "managed", + "type": "openstack_sharedfilesystem_share_v2", + "name": "beacon_seadatanet_data", + "provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]", + "instances": [ + { + "schema_version": 0, + "attributes": { + "all_metadata": {}, + "availability_zone": "nova", + "description": "NFS share for the Bluecloud beacon_seadatanet_data data volume", + "export_locations": [ + { + "path": "172.17.0.7:/volumes/_nogroup/345d9dc9-2f7b-40d1-9ade-9be432120fa0/510d40ea-6ce4-4144-85c5-75132e5d66ef", + "preferred": "false" + } + ], + "has_replicas": false, + "host": "", + "id": "4485ff1e-a2b7-41b7-9b50-d7f013988908", + "is_public": false, + "metadata": null, + "name": "beacon_seadatanet_data", + "project_id": "1b45adf388934758b56d0dfdb4bfacf3", + "region": "isti_area_pi_1", + "replication_type": "", + "share_network_id": "", + "share_proto": "NFS", + "share_server_id": "", + "share_type": "default", + "size": 10, + "snapshot_id": "", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19" + } + ] + }, { "mode": "managed", "type": "openstack_sharedfilesystem_share_v2",