diff --git a/openstack-tf/d4s-production/manila-shares-used-by-swarm-stacks/scilake-intelcomp/scilake-intelcomp.tf b/openstack-tf/d4s-production/manila-shares-used-by-swarm-stacks/scilake-intelcomp/scilake-intelcomp.tf index 12d754f..fd02f3b 100644 --- a/openstack-tf/d4s-production/manila-shares-used-by-swarm-stacks/scilake-intelcomp/scilake-intelcomp.tf +++ b/openstack-tf/d4s-production/manila-shares-used-by-swarm-stacks/scilake-intelcomp/scilake-intelcomp.tf @@ -8,7 +8,7 @@ resource "openstack_sharedfilesystem_share_v2" "intelcomp_elasticsearch_data" { } # Allow access to the NFS share -resource "openstack_sharedfilesystem_share_access_v2" "intelcomp_mgr_private_data_share_access" { +resource "openstack_sharedfilesystem_share_access_v2" "intelcomp_mgr_elasticsearch_data_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.intelcomp_elasticsearch_data.id access_type = "ip" @@ -16,7 +16,7 @@ resource "openstack_sharedfilesystem_share_access_v2" "intelcomp_mgr_private_dat access_level = "rw" } -resource "openstack_sharedfilesystem_share_access_v2" "intelcomp_workers_private_data_share_access" { +resource "openstack_sharedfilesystem_share_access_v2" "intelcomp_workers_elasticsearch_data_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.intelcomp_elasticsearch_data.id access_type = "ip" @@ -32,7 +32,7 @@ resource "openstack_sharedfilesystem_share_v2" "intelcomp_activemq_data" { } # Allow access to the NFS share -resource "openstack_sharedfilesystem_share_access_v2" "intelcomp_mgr_public_data_share_access" { +resource "openstack_sharedfilesystem_share_access_v2" "intelcomp_mgr_activemq_data_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.intelcomp_activemq_data.id access_type = "ip" @@ -40,7 +40,7 @@ resource "openstack_sharedfilesystem_share_access_v2" "intelcomp_mgr_public_data access_level = "rw" } -resource "openstack_sharedfilesystem_share_access_v2" "intelcomp_workers_public_data_share_access" { +resource "openstack_sharedfilesystem_share_access_v2" "intelcomp_workers_activemq_data_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.intelcomp_activemq_data.id access_type = "ip" @@ -56,7 +56,7 @@ resource "openstack_sharedfilesystem_share_v2" "intelcomp_redis_cache" { } # Allow access to the NFS share -resource "openstack_sharedfilesystem_share_access_v2" "intelcomp_mgr_mysql_data_share_access" { +resource "openstack_sharedfilesystem_share_access_v2" "intelcomp_mgr_redis_cache_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.intelcomp_redis_cache.id access_type = "ip" @@ -64,7 +64,7 @@ resource "openstack_sharedfilesystem_share_access_v2" "intelcomp_mgr_mysql_data_ access_level = "rw" } -resource "openstack_sharedfilesystem_share_access_v2" "intelcomp_workers_mysql_data_share_access" { +resource "openstack_sharedfilesystem_share_access_v2" "intelcomp_workers_redis_cache_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.intelcomp_redis_cache.id access_type = "ip" @@ -72,45 +72,83 @@ resource "openstack_sharedfilesystem_share_access_v2" "intelcomp_workers_mysql_d access_level = "rw" } +resource "openstack_sharedfilesystem_share_v2" "intelcomp_pgadmin_data" { + name = "scilake_intelcomp_pgadmin_data" + description = "NFS share for the scilake intelcomp pgadmin data" + share_proto = "NFS" + size = 10 +} -output "intelcomp_nfs_private_data" { +# Allow access to the NFS share +resource "openstack_sharedfilesystem_share_access_v2" "intelcomp_mgr_pgadmin_data_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.intelcomp_pgadmin_data.id + access_type = "ip" + access_to = each.key + access_level = "rw" +} + +resource "openstack_sharedfilesystem_share_access_v2" "intelcomp_workers_pgadmin_data_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.intelcomp_pgadmin_data.id + access_type = "ip" + access_to = each.key + access_level = "rw" +} + +output "intelcomp_nfs_elasticsearch_data" { value = openstack_sharedfilesystem_share_v2.intelcomp_elasticsearch_data } -output "intelcomp_nfs_private_data_mgr_acls" { - value = openstack_sharedfilesystem_share_access_v2.intelcomp_mgr_private_data_share_access +output "intelcomp_nfs_elasticsearch_data_mgr_acls" { + value = openstack_sharedfilesystem_share_access_v2.intelcomp_mgr_elasticsearch_data_share_access sensitive = true } -output "intelcomp_nfs_private_data_workers_acls" { - value = openstack_sharedfilesystem_share_access_v2.intelcomp_workers_private_data_share_access +output "intelcomp_nfs_elasticsearch_data_workers_acls" { + value = openstack_sharedfilesystem_share_access_v2.intelcomp_workers_elasticsearch_data_share_access sensitive = true } -output "intelcomp_nfs_public_data" { +output "intelcomp_nfs_activemq_data" { value = openstack_sharedfilesystem_share_v2.intelcomp_activemq_data } -output "intelcomp_nfs_public_data_mgr_acls" { - value = openstack_sharedfilesystem_share_access_v2.intelcomp_mgr_public_data_share_access +output "intelcomp_nfs_activemq_data_mgr_acls" { + value = openstack_sharedfilesystem_share_access_v2.intelcomp_mgr_activemq_data_share_access sensitive = true } -output "intelcomp_nfs_public_data_workers_acls" { - value = openstack_sharedfilesystem_share_access_v2.intelcomp_workers_public_data_share_access +output "intelcomp_nfs_activemq_data_workers_acls" { + value = openstack_sharedfilesystem_share_access_v2.intelcomp_workers_activemq_data_share_access sensitive = true } -output "intelcomp_nfs_mysql_data" { +output "intelcomp_nfs_redis_cache" { value = openstack_sharedfilesystem_share_v2.intelcomp_redis_cache } -output "intelcomp_nfs_mysql_data_mgr_acls" { - value = openstack_sharedfilesystem_share_access_v2.intelcomp_mgr_mysql_data_share_access +output "intelcomp_nfs_redis_cache_mgr_acls" { + value = openstack_sharedfilesystem_share_access_v2.intelcomp_mgr_redis_cache_share_access sensitive = true } -output "intelcomp_nfs_mysql_data_workers_acls" { - value = openstack_sharedfilesystem_share_access_v2.intelcomp_workers_mysql_data_share_access +output "intelcomp_nfs_redis_cache_workers_acls" { + value = openstack_sharedfilesystem_share_access_v2.intelcomp_workers_redis_cache_share_access sensitive = true } + +output "intelcomp_nfs_pgadmin_data" { + value = openstack_sharedfilesystem_share_v2.intelcomp_pgadmin_data +} + +output "intelcomp_nfs_pgadminl_data_mgr_acls" { + value = openstack_sharedfilesystem_share_access_v2.intelcomp_mgr_pgadmin_data_share_access + sensitive = true +} + +output "intelcomp_nfs_pgadmin_data_workers_acls" { + value = openstack_sharedfilesystem_share_access_v2.intelcomp_workers_pgadmin_data_share_access + sensitive = true +} + diff --git a/openstack-tf/d4s-production/manila-shares-used-by-swarm-stacks/scilake-intelcomp/terraform.tfstate b/openstack-tf/d4s-production/manila-shares-used-by-swarm-stacks/scilake-intelcomp/terraform.tfstate index c5ea9d4..e6822a9 100644 --- a/openstack-tf/d4s-production/manila-shares-used-by-swarm-stacks/scilake-intelcomp/terraform.tfstate +++ b/openstack-tf/d4s-production/manila-shares-used-by-swarm-stacks/scilake-intelcomp/terraform.tfstate @@ -1,906 +1,10 @@ { "version": 4, "terraform_version": "1.7.5", - "serial": 41, + "serial": 120, "lineage": "4f95537d-b741-041d-2a0a-3396cd676fcf", "outputs": { - "intelcomp_nfs_mysql_data": { - "value": { - "all_metadata": {}, - "availability_zone": "nova", - "description": "NFS share for the scilake intelcomp redis cache", - "export_locations": [ - { - "path": "172.17.0.7:/volumes/_nogroup/214b8e18-2e94-4447-99a9-d0ed6c86d7e4/612aae45-f0a2-4dd2-9e63-602ed67e2d14", - "preferred": "false" - } - ], - "has_replicas": false, - "host": "", - "id": "f267597b-80d3-4062-b0e9-cd3186b0835d", - "is_public": false, - "metadata": null, - "name": "scilake_intelcomp_redis_cache", - "project_id": "1b45adf388934758b56d0dfdb4bfacf3", - "region": "isti_area_pi_1", - "replication_type": "", - "share_network_id": "", - "share_proto": "NFS", - "share_server_id": "", - "share_type": "default", - "size": 2, - "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" - } - ] - } - ] - }, - "intelcomp_nfs_mysql_data_mgr_acls": { - "value": { - "172.17.1.180": { - "access_key": "", - "access_level": "rw", - "access_to": "172.17.1.180", - "access_type": "ip", - "id": "064bf941-35d3-4177-a467-f4c8da5a20c3", - "region": "isti_area_pi_1", - "share_id": "f267597b-80d3-4062-b0e9-cd3186b0835d", - "state": "active", - "timeouts": null - }, - "172.17.2.236": { - "access_key": "", - "access_level": "rw", - "access_to": "172.17.2.236", - "access_type": "ip", - "id": "1ef13cdf-97b3-4110-931c-2a3a23e13973", - "region": "isti_area_pi_1", - "share_id": "f267597b-80d3-4062-b0e9-cd3186b0835d", - "state": "active", - "timeouts": null - }, - "172.17.3.65": { - "access_key": "", - "access_level": "rw", - "access_to": "172.17.3.65", - "access_type": "ip", - "id": "6c5f8860-a035-41b0-940f-c12854aa8367", - "region": "isti_area_pi_1", - "share_id": "f267597b-80d3-4062-b0e9-cd3186b0835d", - "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 - }, - "intelcomp_nfs_mysql_data_workers_acls": { - "value": { - "172.17.0.155": { - "access_key": "", - "access_level": "rw", - "access_to": "172.17.0.155", - "access_type": "ip", - "id": "9b8e1018-097b-48d4-bc15-9f6afa741b19", - "region": "isti_area_pi_1", - "share_id": "f267597b-80d3-4062-b0e9-cd3186b0835d", - "state": "active", - "timeouts": null - }, - "172.17.1.142": { - "access_key": "", - "access_level": "rw", - "access_to": "172.17.1.142", - "access_type": "ip", - "id": "c5c74002-8a6f-4bd1-9e90-e99b82c12f01", - "region": "isti_area_pi_1", - "share_id": "f267597b-80d3-4062-b0e9-cd3186b0835d", - "state": "active", - "timeouts": null - }, - "172.17.1.185": { - "access_key": "", - "access_level": "rw", - "access_to": "172.17.1.185", - "access_type": "ip", - "id": "c3f37ba5-e09b-4e42-8377-11940e18e221", - "region": "isti_area_pi_1", - "share_id": "f267597b-80d3-4062-b0e9-cd3186b0835d", - "state": "active", - "timeouts": null - }, - "172.17.1.62": { - "access_key": "", - "access_level": "rw", - "access_to": "172.17.1.62", - "access_type": "ip", - "id": "57247440-747e-4da5-9ba8-055a759ca5b8", - "region": "isti_area_pi_1", - "share_id": "f267597b-80d3-4062-b0e9-cd3186b0835d", - "state": "active", - "timeouts": null - }, - "172.17.1.65": { - "access_key": "", - "access_level": "rw", - "access_to": "172.17.1.65", - "access_type": "ip", - "id": "c71a98e6-4495-47fb-b8be-6c827650c8a3", - "region": "isti_area_pi_1", - "share_id": "f267597b-80d3-4062-b0e9-cd3186b0835d", - "state": "active", - "timeouts": null - }, - "172.17.3.251": { - "access_key": "", - "access_level": "rw", - "access_to": "172.17.3.251", - "access_type": "ip", - "id": "8948492a-3906-4aca-b419-c13dbd9abac9", - "region": "isti_area_pi_1", - "share_id": "f267597b-80d3-4062-b0e9-cd3186b0835d", - "state": "active", - "timeouts": null - }, - "172.17.3.55": { - "access_key": "", - "access_level": "rw", - "access_to": "172.17.3.55", - "access_type": "ip", - "id": "f7729dd8-757f-41c9-a9f9-82f7372c07b6", - "region": "isti_area_pi_1", - "share_id": "f267597b-80d3-4062-b0e9-cd3186b0835d", - "state": "active", - "timeouts": null - }, - "172.17.3.9": { - "access_key": "", - "access_level": "rw", - "access_to": "172.17.3.9", - "access_type": "ip", - "id": "46ff1fb6-26ec-4b9d-836a-05c2465aa512", - "region": "isti_area_pi_1", - "share_id": "f267597b-80d3-4062-b0e9-cd3186b0835d", - "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 - }, - "intelcomp_nfs_private_data": { - "value": { - "all_metadata": {}, - "availability_zone": "nova", - "description": "NFS share for the scilake intelcomp elasticsearch data", - "export_locations": [ - { - "path": "172.17.0.7:/volumes/_nogroup/df22270c-0eaf-4335-ab80-d158551be57e/a6f104de-2bc7-4f5b-9f51-59ab5afcc9aa", - "preferred": "false" - } - ], - "has_replicas": false, - "host": "", - "id": "0607dda2-1cff-4b5d-b3cf-96a741417659", - "is_public": false, - "metadata": null, - "name": "scilake_intelcomp_elasticsearch_data", - "project_id": "1b45adf388934758b56d0dfdb4bfacf3", - "region": "isti_area_pi_1", - "replication_type": "", - "share_network_id": "", - "share_proto": "NFS", - "share_server_id": "", - "share_type": "default", - "size": 50, - "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" - } - ] - } - ] - }, - "intelcomp_nfs_private_data_mgr_acls": { - "value": { - "172.17.1.180": { - "access_key": "", - "access_level": "rw", - "access_to": "172.17.1.180", - "access_type": "ip", - "id": "5ec06abb-2d32-4590-9a3e-1ebbbed2c386", - "region": "isti_area_pi_1", - "share_id": "0607dda2-1cff-4b5d-b3cf-96a741417659", - "state": "active", - "timeouts": null - }, - "172.17.2.236": { - "access_key": "", - "access_level": "rw", - "access_to": "172.17.2.236", - "access_type": "ip", - "id": "509809fe-6e69-4295-a2e6-afa85fe2fa55", - "region": "isti_area_pi_1", - "share_id": "0607dda2-1cff-4b5d-b3cf-96a741417659", - "state": "active", - "timeouts": null - }, - "172.17.3.65": { - "access_key": "", - "access_level": "rw", - "access_to": "172.17.3.65", - "access_type": "ip", - "id": "f245fd11-336b-4048-874e-aa948c07a5ee", - "region": "isti_area_pi_1", - "share_id": "0607dda2-1cff-4b5d-b3cf-96a741417659", - "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 - }, - "intelcomp_nfs_private_data_workers_acls": { - "value": { - "172.17.0.155": { - "access_key": "", - "access_level": "rw", - "access_to": "172.17.0.155", - "access_type": "ip", - "id": "3364e8bd-2127-4f79-93a5-d9069d966a77", - "region": "isti_area_pi_1", - "share_id": "0607dda2-1cff-4b5d-b3cf-96a741417659", - "state": "active", - "timeouts": null - }, - "172.17.1.142": { - "access_key": "", - "access_level": "rw", - "access_to": "172.17.1.142", - "access_type": "ip", - "id": "28855fc9-aad5-4126-b029-ffd2f79adab6", - "region": "isti_area_pi_1", - "share_id": "0607dda2-1cff-4b5d-b3cf-96a741417659", - "state": "active", - "timeouts": null - }, - "172.17.1.185": { - "access_key": "", - "access_level": "rw", - "access_to": "172.17.1.185", - "access_type": "ip", - "id": "7309e773-b15d-4074-9507-c01b7e51be2b", - "region": "isti_area_pi_1", - "share_id": "0607dda2-1cff-4b5d-b3cf-96a741417659", - "state": "active", - "timeouts": null - }, - "172.17.1.62": { - "access_key": "", - "access_level": "rw", - "access_to": "172.17.1.62", - "access_type": "ip", - "id": "52378dbb-d83d-4362-8506-7b6f7d39573c", - "region": "isti_area_pi_1", - "share_id": "0607dda2-1cff-4b5d-b3cf-96a741417659", - "state": "active", - "timeouts": null - }, - "172.17.1.65": { - "access_key": "", - "access_level": "rw", - "access_to": "172.17.1.65", - "access_type": "ip", - "id": "de03ecae-0d7c-4a6c-9eb4-a0c0c87cc0ab", - "region": "isti_area_pi_1", - "share_id": "0607dda2-1cff-4b5d-b3cf-96a741417659", - "state": "active", - "timeouts": null - }, - "172.17.3.251": { - "access_key": "", - "access_level": "rw", - "access_to": "172.17.3.251", - "access_type": "ip", - "id": "27f10125-3f4a-402b-8c9f-55d6e8e42a01", - "region": "isti_area_pi_1", - "share_id": "0607dda2-1cff-4b5d-b3cf-96a741417659", - "state": "active", - "timeouts": null - }, - "172.17.3.55": { - "access_key": "", - "access_level": "rw", - "access_to": "172.17.3.55", - "access_type": "ip", - "id": "c750e668-cfb7-4046-9b04-786c652511cc", - "region": "isti_area_pi_1", - "share_id": "0607dda2-1cff-4b5d-b3cf-96a741417659", - "state": "active", - "timeouts": null - }, - "172.17.3.9": { - "access_key": "", - "access_level": "rw", - "access_to": "172.17.3.9", - "access_type": "ip", - "id": "1cebcb93-e91f-4f58-a30e-2ea50d95f04b", - "region": "isti_area_pi_1", - "share_id": "0607dda2-1cff-4b5d-b3cf-96a741417659", - "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 - }, - "intelcomp_nfs_public_data": { + "intelcomp_nfs_activemq_data": { "value": { "all_metadata": {}, "availability_zone": "nova", @@ -976,14 +80,14 @@ } ] }, - "intelcomp_nfs_public_data_mgr_acls": { + "intelcomp_nfs_activemq_data_mgr_acls": { "value": { "172.17.1.180": { "access_key": "", "access_level": "rw", "access_to": "172.17.1.180", "access_type": "ip", - "id": "0549f808-464b-4e23-9ba2-babcb786d108", + "id": "2465778a-7fdb-4f9d-84a0-449ce6445a01", "region": "isti_area_pi_1", "share_id": "4df158ff-3dd0-4ed0-b74d-6f5c36f25c36", "state": "active", @@ -994,7 +98,7 @@ "access_level": "rw", "access_to": "172.17.2.236", "access_type": "ip", - "id": "bcefdc76-ec96-42fe-b4a9-b222dd3b6e33", + "id": "61ffac21-c8c2-461d-92ed-e0cd85ddefb6", "region": "isti_area_pi_1", "share_id": "4df158ff-3dd0-4ed0-b74d-6f5c36f25c36", "state": "active", @@ -1005,7 +109,7 @@ "access_level": "rw", "access_to": "172.17.3.65", "access_type": "ip", - "id": "5b2fa875-c3a0-4c74-82f7-175a29c7aef7", + "id": "b0aa21cb-e6fc-4ea4-ac2d-80fa8becf200", "region": "isti_area_pi_1", "share_id": "4df158ff-3dd0-4ed0-b74d-6f5c36f25c36", "state": "active", @@ -1082,14 +186,14 @@ ], "sensitive": true }, - "intelcomp_nfs_public_data_workers_acls": { + "intelcomp_nfs_activemq_data_workers_acls": { "value": { "172.17.0.155": { "access_key": "", "access_level": "rw", "access_to": "172.17.0.155", "access_type": "ip", - "id": "a361aa88-8315-4dba-a588-c7aa7cc4ea89", + "id": "c04d94a1-94f8-4869-978c-30ae259d06d5", "region": "isti_area_pi_1", "share_id": "4df158ff-3dd0-4ed0-b74d-6f5c36f25c36", "state": "active", @@ -1100,7 +204,7 @@ "access_level": "rw", "access_to": "172.17.1.142", "access_type": "ip", - "id": "cd3b7266-2b34-41b7-851a-de0633d8da22", + "id": "5c4df28a-8e88-4240-ad70-785b4e1e74b8", "region": "isti_area_pi_1", "share_id": "4df158ff-3dd0-4ed0-b74d-6f5c36f25c36", "state": "active", @@ -1111,7 +215,7 @@ "access_level": "rw", "access_to": "172.17.1.185", "access_type": "ip", - "id": "d382ef63-8dd1-4202-95b5-564fd360c4af", + "id": "10fa8b95-2290-4b88-9219-ef8dd7e40f79", "region": "isti_area_pi_1", "share_id": "4df158ff-3dd0-4ed0-b74d-6f5c36f25c36", "state": "active", @@ -1122,7 +226,7 @@ "access_level": "rw", "access_to": "172.17.1.62", "access_type": "ip", - "id": "01557f30-81da-4298-8c09-27cdb3e7556c", + "id": "301daaa3-6448-47d2-b626-f52c3ae5db41", "region": "isti_area_pi_1", "share_id": "4df158ff-3dd0-4ed0-b74d-6f5c36f25c36", "state": "active", @@ -1133,7 +237,7 @@ "access_level": "rw", "access_to": "172.17.1.65", "access_type": "ip", - "id": "4ef31b97-5d8f-461c-b3c4-b2ba4dda5738", + "id": "cf551ac2-f166-4953-8c28-da56648385a9", "region": "isti_area_pi_1", "share_id": "4df158ff-3dd0-4ed0-b74d-6f5c36f25c36", "state": "active", @@ -1144,7 +248,7 @@ "access_level": "rw", "access_to": "172.17.3.251", "access_type": "ip", - "id": "092a8aaf-0729-460f-9479-3ceacc8b3d6a", + "id": "85a56d7a-1c3a-4211-a974-153ff1023074", "region": "isti_area_pi_1", "share_id": "4df158ff-3dd0-4ed0-b74d-6f5c36f25c36", "state": "active", @@ -1155,7 +259,7 @@ "access_level": "rw", "access_to": "172.17.3.55", "access_type": "ip", - "id": "ec2f3553-28d9-4b60-809f-7bbd121474bd", + "id": "fb1c31f0-cec6-4e62-aaae-e7129a58233f", "region": "isti_area_pi_1", "share_id": "4df158ff-3dd0-4ed0-b74d-6f5c36f25c36", "state": "active", @@ -1166,7 +270,7 @@ "access_level": "rw", "access_to": "172.17.3.9", "access_type": "ip", - "id": "90cfcfa4-fd02-4f75-b5cd-a19cbbcb4d61", + "id": "75d92c1c-4326-4135-82f5-331568234c05", "region": "isti_area_pi_1", "share_id": "4df158ff-3dd0-4ed0-b74d-6f5c36f25c36", "state": "active", @@ -1347,6 +451,1350 @@ } ], "sensitive": true + }, + "intelcomp_nfs_elasticsearch_data": { + "value": { + "all_metadata": {}, + "availability_zone": "nova", + "description": "NFS share for the scilake intelcomp elasticsearch data", + "export_locations": [ + { + "path": "172.17.0.7:/volumes/_nogroup/df22270c-0eaf-4335-ab80-d158551be57e/a6f104de-2bc7-4f5b-9f51-59ab5afcc9aa", + "preferred": "false" + } + ], + "has_replicas": false, + "host": "", + "id": "0607dda2-1cff-4b5d-b3cf-96a741417659", + "is_public": false, + "metadata": null, + "name": "scilake_intelcomp_elasticsearch_data", + "project_id": "1b45adf388934758b56d0dfdb4bfacf3", + "region": "isti_area_pi_1", + "replication_type": "", + "share_network_id": "", + "share_proto": "NFS", + "share_server_id": "", + "share_type": "default", + "size": 50, + "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" + } + ] + } + ] + }, + "intelcomp_nfs_elasticsearch_data_mgr_acls": { + "value": { + "172.17.1.180": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.180", + "access_type": "ip", + "id": "7657300c-1f75-468c-8180-ded90d139bb8", + "region": "isti_area_pi_1", + "share_id": "0607dda2-1cff-4b5d-b3cf-96a741417659", + "state": "active", + "timeouts": null + }, + "172.17.2.236": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.2.236", + "access_type": "ip", + "id": "4687fb2f-3287-455f-9e01-52bce4c4c409", + "region": "isti_area_pi_1", + "share_id": "0607dda2-1cff-4b5d-b3cf-96a741417659", + "state": "active", + "timeouts": null + }, + "172.17.3.65": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.3.65", + "access_type": "ip", + "id": "58262a3f-40c6-43ac-8fdc-40ae9d2fa2a0", + "region": "isti_area_pi_1", + "share_id": "0607dda2-1cff-4b5d-b3cf-96a741417659", + "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 + }, + "intelcomp_nfs_elasticsearch_data_workers_acls": { + "value": { + "172.17.0.155": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.0.155", + "access_type": "ip", + "id": "cf0c9ef1-87b9-469c-8c12-820f68797ad5", + "region": "isti_area_pi_1", + "share_id": "0607dda2-1cff-4b5d-b3cf-96a741417659", + "state": "active", + "timeouts": null + }, + "172.17.1.142": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.142", + "access_type": "ip", + "id": "bd25880c-d606-402c-aedc-e41498333f72", + "region": "isti_area_pi_1", + "share_id": "0607dda2-1cff-4b5d-b3cf-96a741417659", + "state": "active", + "timeouts": null + }, + "172.17.1.185": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.185", + "access_type": "ip", + "id": "8de514d5-70fc-4c48-8e88-63607e4fc4b5", + "region": "isti_area_pi_1", + "share_id": "0607dda2-1cff-4b5d-b3cf-96a741417659", + "state": "active", + "timeouts": null + }, + "172.17.1.62": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.62", + "access_type": "ip", + "id": "6f2723c7-7f97-467f-94f4-24f2039390bd", + "region": "isti_area_pi_1", + "share_id": "0607dda2-1cff-4b5d-b3cf-96a741417659", + "state": "active", + "timeouts": null + }, + "172.17.1.65": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.65", + "access_type": "ip", + "id": "f976809c-d3c3-478c-acad-183b64d301e9", + "region": "isti_area_pi_1", + "share_id": "0607dda2-1cff-4b5d-b3cf-96a741417659", + "state": "active", + "timeouts": null + }, + "172.17.3.251": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.3.251", + "access_type": "ip", + "id": "a5928e13-3dba-4bda-98aa-00872dc95de9", + "region": "isti_area_pi_1", + "share_id": "0607dda2-1cff-4b5d-b3cf-96a741417659", + "state": "active", + "timeouts": null + }, + "172.17.3.55": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.3.55", + "access_type": "ip", + "id": "8ee303a0-6be2-435e-a2c6-e4d3d4153a0b", + "region": "isti_area_pi_1", + "share_id": "0607dda2-1cff-4b5d-b3cf-96a741417659", + "state": "active", + "timeouts": null + }, + "172.17.3.9": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.3.9", + "access_type": "ip", + "id": "423d9ba0-4322-4e4f-8012-cb2e10890fe2", + "region": "isti_area_pi_1", + "share_id": "0607dda2-1cff-4b5d-b3cf-96a741417659", + "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 + }, + "intelcomp_nfs_pgadmin_data": { + "value": { + "all_metadata": {}, + "availability_zone": "nova", + "description": "NFS share for the scilake intelcomp pgadmin data", + "export_locations": [ + { + "path": "172.17.0.7:/volumes/_nogroup/2d918e67-e32e-4390-84b7-94afe79b5a00/61db51b5-f5d6-4c9b-95bc-3d48d5b8973d", + "preferred": "false" + } + ], + "has_replicas": false, + "host": "", + "id": "d16d1afa-7d86-4ca0-8abd-fac66d837f65", + "is_public": false, + "metadata": null, + "name": "scilake_intelcomp_pgadmin_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" + } + ] + } + ] + }, + "intelcomp_nfs_pgadmin_data_workers_acls": { + "value": { + "172.17.0.155": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.0.155", + "access_type": "ip", + "id": "63c314b8-7db2-4fc4-9740-651050e856a9", + "region": "isti_area_pi_1", + "share_id": "d16d1afa-7d86-4ca0-8abd-fac66d837f65", + "state": "active", + "timeouts": null + }, + "172.17.1.142": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.142", + "access_type": "ip", + "id": "15003c3e-edd1-4b0e-bdd4-345d53468ec3", + "region": "isti_area_pi_1", + "share_id": "d16d1afa-7d86-4ca0-8abd-fac66d837f65", + "state": "active", + "timeouts": null + }, + "172.17.1.185": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.185", + "access_type": "ip", + "id": "85814f52-c8a3-4863-b5b4-3ca4e11bc448", + "region": "isti_area_pi_1", + "share_id": "d16d1afa-7d86-4ca0-8abd-fac66d837f65", + "state": "active", + "timeouts": null + }, + "172.17.1.62": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.62", + "access_type": "ip", + "id": "aaffa096-efe8-4049-b4d1-d2137d3da2ae", + "region": "isti_area_pi_1", + "share_id": "d16d1afa-7d86-4ca0-8abd-fac66d837f65", + "state": "active", + "timeouts": null + }, + "172.17.1.65": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.65", + "access_type": "ip", + "id": "8ff58687-0679-4a11-84eb-de780ac29aeb", + "region": "isti_area_pi_1", + "share_id": "d16d1afa-7d86-4ca0-8abd-fac66d837f65", + "state": "active", + "timeouts": null + }, + "172.17.3.251": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.3.251", + "access_type": "ip", + "id": "b1e7c8e6-b582-4d29-82b5-6f37bc288461", + "region": "isti_area_pi_1", + "share_id": "d16d1afa-7d86-4ca0-8abd-fac66d837f65", + "state": "active", + "timeouts": null + }, + "172.17.3.55": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.3.55", + "access_type": "ip", + "id": "ebe8821b-116d-4072-9fa2-d207fdda5f8f", + "region": "isti_area_pi_1", + "share_id": "d16d1afa-7d86-4ca0-8abd-fac66d837f65", + "state": "active", + "timeouts": null + }, + "172.17.3.9": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.3.9", + "access_type": "ip", + "id": "0e1e7d5e-c6fc-4d35-9022-7293045349be", + "region": "isti_area_pi_1", + "share_id": "d16d1afa-7d86-4ca0-8abd-fac66d837f65", + "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 + }, + "intelcomp_nfs_pgadminl_data_mgr_acls": { + "value": { + "172.17.1.180": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.180", + "access_type": "ip", + "id": "a792fc63-6b68-45c8-bb29-17218d55a15f", + "region": "isti_area_pi_1", + "share_id": "d16d1afa-7d86-4ca0-8abd-fac66d837f65", + "state": "active", + "timeouts": null + }, + "172.17.2.236": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.2.236", + "access_type": "ip", + "id": "64b40a2d-1356-482f-933b-73008eea3898", + "region": "isti_area_pi_1", + "share_id": "d16d1afa-7d86-4ca0-8abd-fac66d837f65", + "state": "active", + "timeouts": null + }, + "172.17.3.65": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.3.65", + "access_type": "ip", + "id": "df7c4112-b629-4298-b5b5-65b56a98de57", + "region": "isti_area_pi_1", + "share_id": "d16d1afa-7d86-4ca0-8abd-fac66d837f65", + "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 + }, + "intelcomp_nfs_redis_cache": { + "value": { + "all_metadata": {}, + "availability_zone": "nova", + "description": "NFS share for the scilake intelcomp redis cache", + "export_locations": [ + { + "path": "172.17.0.7:/volumes/_nogroup/214b8e18-2e94-4447-99a9-d0ed6c86d7e4/612aae45-f0a2-4dd2-9e63-602ed67e2d14", + "preferred": "false" + } + ], + "has_replicas": false, + "host": "", + "id": "f267597b-80d3-4062-b0e9-cd3186b0835d", + "is_public": false, + "metadata": null, + "name": "scilake_intelcomp_redis_cache", + "project_id": "1b45adf388934758b56d0dfdb4bfacf3", + "region": "isti_area_pi_1", + "replication_type": "", + "share_network_id": "", + "share_proto": "NFS", + "share_server_id": "", + "share_type": "default", + "size": 2, + "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" + } + ] + } + ] + }, + "intelcomp_nfs_redis_cache_mgr_acls": { + "value": { + "172.17.1.180": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.180", + "access_type": "ip", + "id": "3499cd58-bfe3-407e-bb33-2d3ec0f53848", + "region": "isti_area_pi_1", + "share_id": "f267597b-80d3-4062-b0e9-cd3186b0835d", + "state": "active", + "timeouts": null + }, + "172.17.2.236": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.2.236", + "access_type": "ip", + "id": "347575df-dca2-4064-8d01-0e88192ce501", + "region": "isti_area_pi_1", + "share_id": "f267597b-80d3-4062-b0e9-cd3186b0835d", + "state": "active", + "timeouts": null + }, + "172.17.3.65": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.3.65", + "access_type": "ip", + "id": "7e5a383f-56f5-494f-abbb-2fbd6222a709", + "region": "isti_area_pi_1", + "share_id": "f267597b-80d3-4062-b0e9-cd3186b0835d", + "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 + }, + "intelcomp_nfs_redis_cache_workers_acls": { + "value": { + "172.17.0.155": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.0.155", + "access_type": "ip", + "id": "5b533798-536b-4ea7-8415-d08ae1330107", + "region": "isti_area_pi_1", + "share_id": "f267597b-80d3-4062-b0e9-cd3186b0835d", + "state": "active", + "timeouts": null + }, + "172.17.1.142": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.142", + "access_type": "ip", + "id": "74b6af56-90f8-48e6-8b77-c30161282836", + "region": "isti_area_pi_1", + "share_id": "f267597b-80d3-4062-b0e9-cd3186b0835d", + "state": "active", + "timeouts": null + }, + "172.17.1.185": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.185", + "access_type": "ip", + "id": "07a36412-2246-4a9d-8aa6-a5b25cdd7eb6", + "region": "isti_area_pi_1", + "share_id": "f267597b-80d3-4062-b0e9-cd3186b0835d", + "state": "active", + "timeouts": null + }, + "172.17.1.62": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.62", + "access_type": "ip", + "id": "768f02df-668d-4f37-ad1b-022243eaed55", + "region": "isti_area_pi_1", + "share_id": "f267597b-80d3-4062-b0e9-cd3186b0835d", + "state": "active", + "timeouts": null + }, + "172.17.1.65": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.1.65", + "access_type": "ip", + "id": "a496647f-47da-4e13-9993-b30831dbf911", + "region": "isti_area_pi_1", + "share_id": "f267597b-80d3-4062-b0e9-cd3186b0835d", + "state": "active", + "timeouts": null + }, + "172.17.3.251": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.3.251", + "access_type": "ip", + "id": "3e08b594-449f-4617-bf08-de67fbdf5d13", + "region": "isti_area_pi_1", + "share_id": "f267597b-80d3-4062-b0e9-cd3186b0835d", + "state": "active", + "timeouts": null + }, + "172.17.3.55": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.3.55", + "access_type": "ip", + "id": "b6630d96-065b-4111-82ff-1c7ae65e28f3", + "region": "isti_area_pi_1", + "share_id": "f267597b-80d3-4062-b0e9-cd3186b0835d", + "state": "active", + "timeouts": null + }, + "172.17.3.9": { + "access_key": "", + "access_level": "rw", + "access_to": "172.17.3.9", + "access_type": "ip", + "id": "b61c1bae-a232-46e6-9e4d-35a4377da5e1", + "region": "isti_area_pi_1", + "share_id": "f267597b-80d3-4062-b0e9-cd3186b0835d", + "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 } }, "resources": [ @@ -6655,7 +7103,7 @@ { "mode": "managed", "type": "openstack_sharedfilesystem_share_access_v2", - "name": "intelcomp_mgr_mysql_data_share_access", + "name": "intelcomp_mgr_activemq_data_share_access", "provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]", "instances": [ { @@ -6666,149 +7114,7 @@ "access_level": "rw", "access_to": "172.17.1.180", "access_type": "ip", - "id": "064bf941-35d3-4177-a467-f4c8da5a20c3", - "region": "isti_area_pi_1", - "share_id": "f267597b-80d3-4062-b0e9-cd3186b0835d", - "state": "active", - "timeouts": null - }, - "sensitive_attributes": [], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", - "dependencies": [ - "data.terraform_remote_state.main_infrastructure", - "openstack_sharedfilesystem_share_v2.intelcomp_redis_cache" - ] - }, - { - "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": "1ef13cdf-97b3-4110-931c-2a3a23e13973", - "region": "isti_area_pi_1", - "share_id": "f267597b-80d3-4062-b0e9-cd3186b0835d", - "state": "active", - "timeouts": null - }, - "sensitive_attributes": [], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", - "dependencies": [ - "data.terraform_remote_state.main_infrastructure", - "openstack_sharedfilesystem_share_v2.intelcomp_redis_cache" - ] - }, - { - "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": "6c5f8860-a035-41b0-940f-c12854aa8367", - "region": "isti_area_pi_1", - "share_id": "f267597b-80d3-4062-b0e9-cd3186b0835d", - "state": "active", - "timeouts": null - }, - "sensitive_attributes": [], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", - "dependencies": [ - "data.terraform_remote_state.main_infrastructure", - "openstack_sharedfilesystem_share_v2.intelcomp_redis_cache" - ] - } - ] - }, - { - "mode": "managed", - "type": "openstack_sharedfilesystem_share_access_v2", - "name": "intelcomp_mgr_private_data_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": "5ec06abb-2d32-4590-9a3e-1ebbbed2c386", - "region": "isti_area_pi_1", - "share_id": "0607dda2-1cff-4b5d-b3cf-96a741417659", - "state": "active", - "timeouts": null - }, - "sensitive_attributes": [], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", - "dependencies": [ - "data.terraform_remote_state.main_infrastructure", - "openstack_sharedfilesystem_share_v2.intelcomp_elasticsearch_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": "509809fe-6e69-4295-a2e6-afa85fe2fa55", - "region": "isti_area_pi_1", - "share_id": "0607dda2-1cff-4b5d-b3cf-96a741417659", - "state": "active", - "timeouts": null - }, - "sensitive_attributes": [], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", - "dependencies": [ - "data.terraform_remote_state.main_infrastructure", - "openstack_sharedfilesystem_share_v2.intelcomp_elasticsearch_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": "f245fd11-336b-4048-874e-aa948c07a5ee", - "region": "isti_area_pi_1", - "share_id": "0607dda2-1cff-4b5d-b3cf-96a741417659", - "state": "active", - "timeouts": null - }, - "sensitive_attributes": [], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", - "dependencies": [ - "data.terraform_remote_state.main_infrastructure", - "openstack_sharedfilesystem_share_v2.intelcomp_elasticsearch_data" - ] - } - ] - }, - { - "mode": "managed", - "type": "openstack_sharedfilesystem_share_access_v2", - "name": "intelcomp_mgr_public_data_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": "0549f808-464b-4e23-9ba2-babcb786d108", + "id": "2465778a-7fdb-4f9d-84a0-449ce6445a01", "region": "isti_area_pi_1", "share_id": "4df158ff-3dd0-4ed0-b74d-6f5c36f25c36", "state": "active", @@ -6829,7 +7135,7 @@ "access_level": "rw", "access_to": "172.17.2.236", "access_type": "ip", - "id": "bcefdc76-ec96-42fe-b4a9-b222dd3b6e33", + "id": "61ffac21-c8c2-461d-92ed-e0cd85ddefb6", "region": "isti_area_pi_1", "share_id": "4df158ff-3dd0-4ed0-b74d-6f5c36f25c36", "state": "active", @@ -6850,7 +7156,7 @@ "access_level": "rw", "access_to": "172.17.3.65", "access_type": "ip", - "id": "5b2fa875-c3a0-4c74-82f7-175a29c7aef7", + "id": "b0aa21cb-e6fc-4ea4-ac2d-80fa8becf200", "region": "isti_area_pi_1", "share_id": "4df158ff-3dd0-4ed0-b74d-6f5c36f25c36", "state": "active", @@ -6868,194 +7174,18 @@ { "mode": "managed", "type": "openstack_sharedfilesystem_share_access_v2", - "name": "intelcomp_workers_mysql_data_share_access", + "name": "intelcomp_mgr_elasticsearch_data_share_access", "provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]", "instances": [ { - "index_key": "172.17.0.155", + "index_key": "172.17.1.180", "schema_version": 0, "attributes": { "access_key": "", "access_level": "rw", - "access_to": "172.17.0.155", + "access_to": "172.17.1.180", "access_type": "ip", - "id": "9b8e1018-097b-48d4-bc15-9f6afa741b19", - "region": "isti_area_pi_1", - "share_id": "f267597b-80d3-4062-b0e9-cd3186b0835d", - "state": "active", - "timeouts": null - }, - "sensitive_attributes": [], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", - "dependencies": [ - "data.terraform_remote_state.main_infrastructure", - "openstack_sharedfilesystem_share_v2.intelcomp_redis_cache" - ] - }, - { - "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": "c5c74002-8a6f-4bd1-9e90-e99b82c12f01", - "region": "isti_area_pi_1", - "share_id": "f267597b-80d3-4062-b0e9-cd3186b0835d", - "state": "active", - "timeouts": null - }, - "sensitive_attributes": [], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", - "dependencies": [ - "data.terraform_remote_state.main_infrastructure", - "openstack_sharedfilesystem_share_v2.intelcomp_redis_cache" - ] - }, - { - "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": "c3f37ba5-e09b-4e42-8377-11940e18e221", - "region": "isti_area_pi_1", - "share_id": "f267597b-80d3-4062-b0e9-cd3186b0835d", - "state": "active", - "timeouts": null - }, - "sensitive_attributes": [], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", - "dependencies": [ - "data.terraform_remote_state.main_infrastructure", - "openstack_sharedfilesystem_share_v2.intelcomp_redis_cache" - ] - }, - { - "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": "57247440-747e-4da5-9ba8-055a759ca5b8", - "region": "isti_area_pi_1", - "share_id": "f267597b-80d3-4062-b0e9-cd3186b0835d", - "state": "active", - "timeouts": null - }, - "sensitive_attributes": [], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", - "dependencies": [ - "data.terraform_remote_state.main_infrastructure", - "openstack_sharedfilesystem_share_v2.intelcomp_redis_cache" - ] - }, - { - "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": "c71a98e6-4495-47fb-b8be-6c827650c8a3", - "region": "isti_area_pi_1", - "share_id": "f267597b-80d3-4062-b0e9-cd3186b0835d", - "state": "active", - "timeouts": null - }, - "sensitive_attributes": [], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", - "dependencies": [ - "data.terraform_remote_state.main_infrastructure", - "openstack_sharedfilesystem_share_v2.intelcomp_redis_cache" - ] - }, - { - "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": "8948492a-3906-4aca-b419-c13dbd9abac9", - "region": "isti_area_pi_1", - "share_id": "f267597b-80d3-4062-b0e9-cd3186b0835d", - "state": "active", - "timeouts": null - }, - "sensitive_attributes": [], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", - "dependencies": [ - "data.terraform_remote_state.main_infrastructure", - "openstack_sharedfilesystem_share_v2.intelcomp_redis_cache" - ] - }, - { - "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": "f7729dd8-757f-41c9-a9f9-82f7372c07b6", - "region": "isti_area_pi_1", - "share_id": "f267597b-80d3-4062-b0e9-cd3186b0835d", - "state": "active", - "timeouts": null - }, - "sensitive_attributes": [], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", - "dependencies": [ - "data.terraform_remote_state.main_infrastructure", - "openstack_sharedfilesystem_share_v2.intelcomp_redis_cache" - ] - }, - { - "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": "46ff1fb6-26ec-4b9d-836a-05c2465aa512", - "region": "isti_area_pi_1", - "share_id": "f267597b-80d3-4062-b0e9-cd3186b0835d", - "state": "active", - "timeouts": null - }, - "sensitive_attributes": [], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", - "dependencies": [ - "data.terraform_remote_state.main_infrastructure", - "openstack_sharedfilesystem_share_v2.intelcomp_redis_cache" - ] - } - ] - }, - { - "mode": "managed", - "type": "openstack_sharedfilesystem_share_access_v2", - "name": "intelcomp_workers_private_data_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": "3364e8bd-2127-4f79-93a5-d9069d966a77", + "id": "7657300c-1f75-468c-8180-ded90d139bb8", "region": "isti_area_pi_1", "share_id": "0607dda2-1cff-4b5d-b3cf-96a741417659", "state": "active", @@ -7069,14 +7199,14 @@ ] }, { - "index_key": "172.17.1.142", + "index_key": "172.17.2.236", "schema_version": 0, "attributes": { "access_key": "", "access_level": "rw", - "access_to": "172.17.1.142", + "access_to": "172.17.2.236", "access_type": "ip", - "id": "28855fc9-aad5-4126-b029-ffd2f79adab6", + "id": "4687fb2f-3287-455f-9e01-52bce4c4c409", "region": "isti_area_pi_1", "share_id": "0607dda2-1cff-4b5d-b3cf-96a741417659", "state": "active", @@ -7090,119 +7220,14 @@ ] }, { - "index_key": "172.17.1.185", + "index_key": "172.17.3.65", "schema_version": 0, "attributes": { "access_key": "", "access_level": "rw", - "access_to": "172.17.1.185", + "access_to": "172.17.3.65", "access_type": "ip", - "id": "7309e773-b15d-4074-9507-c01b7e51be2b", - "region": "isti_area_pi_1", - "share_id": "0607dda2-1cff-4b5d-b3cf-96a741417659", - "state": "active", - "timeouts": null - }, - "sensitive_attributes": [], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", - "dependencies": [ - "data.terraform_remote_state.main_infrastructure", - "openstack_sharedfilesystem_share_v2.intelcomp_elasticsearch_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": "52378dbb-d83d-4362-8506-7b6f7d39573c", - "region": "isti_area_pi_1", - "share_id": "0607dda2-1cff-4b5d-b3cf-96a741417659", - "state": "active", - "timeouts": null - }, - "sensitive_attributes": [], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", - "dependencies": [ - "data.terraform_remote_state.main_infrastructure", - "openstack_sharedfilesystem_share_v2.intelcomp_elasticsearch_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": "de03ecae-0d7c-4a6c-9eb4-a0c0c87cc0ab", - "region": "isti_area_pi_1", - "share_id": "0607dda2-1cff-4b5d-b3cf-96a741417659", - "state": "active", - "timeouts": null - }, - "sensitive_attributes": [], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", - "dependencies": [ - "data.terraform_remote_state.main_infrastructure", - "openstack_sharedfilesystem_share_v2.intelcomp_elasticsearch_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": "27f10125-3f4a-402b-8c9f-55d6e8e42a01", - "region": "isti_area_pi_1", - "share_id": "0607dda2-1cff-4b5d-b3cf-96a741417659", - "state": "active", - "timeouts": null - }, - "sensitive_attributes": [], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", - "dependencies": [ - "data.terraform_remote_state.main_infrastructure", - "openstack_sharedfilesystem_share_v2.intelcomp_elasticsearch_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": "c750e668-cfb7-4046-9b04-786c652511cc", - "region": "isti_area_pi_1", - "share_id": "0607dda2-1cff-4b5d-b3cf-96a741417659", - "state": "active", - "timeouts": null - }, - "sensitive_attributes": [], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", - "dependencies": [ - "data.terraform_remote_state.main_infrastructure", - "openstack_sharedfilesystem_share_v2.intelcomp_elasticsearch_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": "1cebcb93-e91f-4f58-a30e-2ea50d95f04b", + "id": "58262a3f-40c6-43ac-8fdc-40ae9d2fa2a0", "region": "isti_area_pi_1", "share_id": "0607dda2-1cff-4b5d-b3cf-96a741417659", "state": "active", @@ -7220,7 +7245,149 @@ { "mode": "managed", "type": "openstack_sharedfilesystem_share_access_v2", - "name": "intelcomp_workers_public_data_share_access", + "name": "intelcomp_mgr_pgadmin_data_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": "a792fc63-6b68-45c8-bb29-17218d55a15f", + "region": "isti_area_pi_1", + "share_id": "d16d1afa-7d86-4ca0-8abd-fac66d837f65", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.intelcomp_pgadmin_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": "64b40a2d-1356-482f-933b-73008eea3898", + "region": "isti_area_pi_1", + "share_id": "d16d1afa-7d86-4ca0-8abd-fac66d837f65", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.intelcomp_pgadmin_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": "df7c4112-b629-4298-b5b5-65b56a98de57", + "region": "isti_area_pi_1", + "share_id": "d16d1afa-7d86-4ca0-8abd-fac66d837f65", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.intelcomp_pgadmin_data" + ] + } + ] + }, + { + "mode": "managed", + "type": "openstack_sharedfilesystem_share_access_v2", + "name": "intelcomp_mgr_redis_cache_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": "3499cd58-bfe3-407e-bb33-2d3ec0f53848", + "region": "isti_area_pi_1", + "share_id": "f267597b-80d3-4062-b0e9-cd3186b0835d", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.intelcomp_redis_cache" + ] + }, + { + "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": "347575df-dca2-4064-8d01-0e88192ce501", + "region": "isti_area_pi_1", + "share_id": "f267597b-80d3-4062-b0e9-cd3186b0835d", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.intelcomp_redis_cache" + ] + }, + { + "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": "7e5a383f-56f5-494f-abbb-2fbd6222a709", + "region": "isti_area_pi_1", + "share_id": "f267597b-80d3-4062-b0e9-cd3186b0835d", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.intelcomp_redis_cache" + ] + } + ] + }, + { + "mode": "managed", + "type": "openstack_sharedfilesystem_share_access_v2", + "name": "intelcomp_workers_activemq_data_share_access", "provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]", "instances": [ { @@ -7231,7 +7398,7 @@ "access_level": "rw", "access_to": "172.17.0.155", "access_type": "ip", - "id": "a361aa88-8315-4dba-a588-c7aa7cc4ea89", + "id": "c04d94a1-94f8-4869-978c-30ae259d06d5", "region": "isti_area_pi_1", "share_id": "4df158ff-3dd0-4ed0-b74d-6f5c36f25c36", "state": "active", @@ -7252,7 +7419,7 @@ "access_level": "rw", "access_to": "172.17.1.142", "access_type": "ip", - "id": "cd3b7266-2b34-41b7-851a-de0633d8da22", + "id": "5c4df28a-8e88-4240-ad70-785b4e1e74b8", "region": "isti_area_pi_1", "share_id": "4df158ff-3dd0-4ed0-b74d-6f5c36f25c36", "state": "active", @@ -7273,7 +7440,7 @@ "access_level": "rw", "access_to": "172.17.1.185", "access_type": "ip", - "id": "d382ef63-8dd1-4202-95b5-564fd360c4af", + "id": "10fa8b95-2290-4b88-9219-ef8dd7e40f79", "region": "isti_area_pi_1", "share_id": "4df158ff-3dd0-4ed0-b74d-6f5c36f25c36", "state": "active", @@ -7294,7 +7461,7 @@ "access_level": "rw", "access_to": "172.17.1.62", "access_type": "ip", - "id": "01557f30-81da-4298-8c09-27cdb3e7556c", + "id": "301daaa3-6448-47d2-b626-f52c3ae5db41", "region": "isti_area_pi_1", "share_id": "4df158ff-3dd0-4ed0-b74d-6f5c36f25c36", "state": "active", @@ -7315,7 +7482,7 @@ "access_level": "rw", "access_to": "172.17.1.65", "access_type": "ip", - "id": "4ef31b97-5d8f-461c-b3c4-b2ba4dda5738", + "id": "cf551ac2-f166-4953-8c28-da56648385a9", "region": "isti_area_pi_1", "share_id": "4df158ff-3dd0-4ed0-b74d-6f5c36f25c36", "state": "active", @@ -7336,7 +7503,7 @@ "access_level": "rw", "access_to": "172.17.3.251", "access_type": "ip", - "id": "092a8aaf-0729-460f-9479-3ceacc8b3d6a", + "id": "85a56d7a-1c3a-4211-a974-153ff1023074", "region": "isti_area_pi_1", "share_id": "4df158ff-3dd0-4ed0-b74d-6f5c36f25c36", "state": "active", @@ -7357,7 +7524,7 @@ "access_level": "rw", "access_to": "172.17.3.55", "access_type": "ip", - "id": "ec2f3553-28d9-4b60-809f-7bbd121474bd", + "id": "fb1c31f0-cec6-4e62-aaae-e7129a58233f", "region": "isti_area_pi_1", "share_id": "4df158ff-3dd0-4ed0-b74d-6f5c36f25c36", "state": "active", @@ -7378,7 +7545,7 @@ "access_level": "rw", "access_to": "172.17.3.9", "access_type": "ip", - "id": "90cfcfa4-fd02-4f75-b5cd-a19cbbcb4d61", + "id": "75d92c1c-4326-4135-82f5-331568234c05", "region": "isti_area_pi_1", "share_id": "4df158ff-3dd0-4ed0-b74d-6f5c36f25c36", "state": "active", @@ -7393,6 +7560,534 @@ } ] }, + { + "mode": "managed", + "type": "openstack_sharedfilesystem_share_access_v2", + "name": "intelcomp_workers_elasticsearch_data_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": "cf0c9ef1-87b9-469c-8c12-820f68797ad5", + "region": "isti_area_pi_1", + "share_id": "0607dda2-1cff-4b5d-b3cf-96a741417659", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.intelcomp_elasticsearch_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": "bd25880c-d606-402c-aedc-e41498333f72", + "region": "isti_area_pi_1", + "share_id": "0607dda2-1cff-4b5d-b3cf-96a741417659", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.intelcomp_elasticsearch_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": "8de514d5-70fc-4c48-8e88-63607e4fc4b5", + "region": "isti_area_pi_1", + "share_id": "0607dda2-1cff-4b5d-b3cf-96a741417659", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.intelcomp_elasticsearch_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": "6f2723c7-7f97-467f-94f4-24f2039390bd", + "region": "isti_area_pi_1", + "share_id": "0607dda2-1cff-4b5d-b3cf-96a741417659", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.intelcomp_elasticsearch_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": "f976809c-d3c3-478c-acad-183b64d301e9", + "region": "isti_area_pi_1", + "share_id": "0607dda2-1cff-4b5d-b3cf-96a741417659", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.intelcomp_elasticsearch_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": "a5928e13-3dba-4bda-98aa-00872dc95de9", + "region": "isti_area_pi_1", + "share_id": "0607dda2-1cff-4b5d-b3cf-96a741417659", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.intelcomp_elasticsearch_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": "8ee303a0-6be2-435e-a2c6-e4d3d4153a0b", + "region": "isti_area_pi_1", + "share_id": "0607dda2-1cff-4b5d-b3cf-96a741417659", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.intelcomp_elasticsearch_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": "423d9ba0-4322-4e4f-8012-cb2e10890fe2", + "region": "isti_area_pi_1", + "share_id": "0607dda2-1cff-4b5d-b3cf-96a741417659", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.intelcomp_elasticsearch_data" + ] + } + ] + }, + { + "mode": "managed", + "type": "openstack_sharedfilesystem_share_access_v2", + "name": "intelcomp_workers_pgadmin_data_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": "63c314b8-7db2-4fc4-9740-651050e856a9", + "region": "isti_area_pi_1", + "share_id": "d16d1afa-7d86-4ca0-8abd-fac66d837f65", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.intelcomp_pgadmin_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": "15003c3e-edd1-4b0e-bdd4-345d53468ec3", + "region": "isti_area_pi_1", + "share_id": "d16d1afa-7d86-4ca0-8abd-fac66d837f65", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.intelcomp_pgadmin_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": "85814f52-c8a3-4863-b5b4-3ca4e11bc448", + "region": "isti_area_pi_1", + "share_id": "d16d1afa-7d86-4ca0-8abd-fac66d837f65", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.intelcomp_pgadmin_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": "aaffa096-efe8-4049-b4d1-d2137d3da2ae", + "region": "isti_area_pi_1", + "share_id": "d16d1afa-7d86-4ca0-8abd-fac66d837f65", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.intelcomp_pgadmin_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": "8ff58687-0679-4a11-84eb-de780ac29aeb", + "region": "isti_area_pi_1", + "share_id": "d16d1afa-7d86-4ca0-8abd-fac66d837f65", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.intelcomp_pgadmin_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": "b1e7c8e6-b582-4d29-82b5-6f37bc288461", + "region": "isti_area_pi_1", + "share_id": "d16d1afa-7d86-4ca0-8abd-fac66d837f65", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.intelcomp_pgadmin_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": "ebe8821b-116d-4072-9fa2-d207fdda5f8f", + "region": "isti_area_pi_1", + "share_id": "d16d1afa-7d86-4ca0-8abd-fac66d837f65", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.intelcomp_pgadmin_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": "0e1e7d5e-c6fc-4d35-9022-7293045349be", + "region": "isti_area_pi_1", + "share_id": "d16d1afa-7d86-4ca0-8abd-fac66d837f65", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.intelcomp_pgadmin_data" + ] + } + ] + }, + { + "mode": "managed", + "type": "openstack_sharedfilesystem_share_access_v2", + "name": "intelcomp_workers_redis_cache_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": "5b533798-536b-4ea7-8415-d08ae1330107", + "region": "isti_area_pi_1", + "share_id": "f267597b-80d3-4062-b0e9-cd3186b0835d", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.intelcomp_redis_cache" + ] + }, + { + "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": "74b6af56-90f8-48e6-8b77-c30161282836", + "region": "isti_area_pi_1", + "share_id": "f267597b-80d3-4062-b0e9-cd3186b0835d", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.intelcomp_redis_cache" + ] + }, + { + "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": "07a36412-2246-4a9d-8aa6-a5b25cdd7eb6", + "region": "isti_area_pi_1", + "share_id": "f267597b-80d3-4062-b0e9-cd3186b0835d", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.intelcomp_redis_cache" + ] + }, + { + "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": "768f02df-668d-4f37-ad1b-022243eaed55", + "region": "isti_area_pi_1", + "share_id": "f267597b-80d3-4062-b0e9-cd3186b0835d", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.intelcomp_redis_cache" + ] + }, + { + "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": "a496647f-47da-4e13-9993-b30831dbf911", + "region": "isti_area_pi_1", + "share_id": "f267597b-80d3-4062-b0e9-cd3186b0835d", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.intelcomp_redis_cache" + ] + }, + { + "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": "3e08b594-449f-4617-bf08-de67fbdf5d13", + "region": "isti_area_pi_1", + "share_id": "f267597b-80d3-4062-b0e9-cd3186b0835d", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.intelcomp_redis_cache" + ] + }, + { + "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": "b6630d96-065b-4111-82ff-1c7ae65e28f3", + "region": "isti_area_pi_1", + "share_id": "f267597b-80d3-4062-b0e9-cd3186b0835d", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.intelcomp_redis_cache" + ] + }, + { + "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": "b61c1bae-a232-46e6-9e4d-35a4377da5e1", + "region": "isti_area_pi_1", + "share_id": "f267597b-80d3-4062-b0e9-cd3186b0835d", + "state": "active", + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.main_infrastructure", + "openstack_sharedfilesystem_share_v2.intelcomp_redis_cache" + ] + } + ] + }, { "mode": "managed", "type": "openstack_sharedfilesystem_share_v2", @@ -7473,6 +8168,46 @@ } ] }, + { + "mode": "managed", + "type": "openstack_sharedfilesystem_share_v2", + "name": "intelcomp_pgadmin_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 scilake intelcomp pgadmin data", + "export_locations": [ + { + "path": "172.17.0.7:/volumes/_nogroup/2d918e67-e32e-4390-84b7-94afe79b5a00/61db51b5-f5d6-4c9b-95bc-3d48d5b8973d", + "preferred": "false" + } + ], + "has_replicas": false, + "host": "", + "id": "d16d1afa-7d86-4ca0-8abd-fac66d837f65", + "is_public": false, + "metadata": null, + "name": "scilake_intelcomp_pgadmin_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",