Manila volume for the D4Science PgAdmin service in production.

This commit is contained in:
Andrea Dell'Amico 2024-04-17 18:12:35 +02:00
parent 105b840628
commit b4e18cdef4
Signed by: andrea.dellamico
GPG Key ID: 147ABE6CEB9E20FF
2 changed files with 774 additions and 1 deletions

View File

@ -0,0 +1,38 @@
# d4s_pgadmin_pgadmin_data
resource "openstack_sharedfilesystem_share_v2" "d4s_pgadmin_pgadmin" {
name = "d4s_pgadmin_pgadmin"
description = "NFS share for the D4Science production pgAdmin instance"
share_proto = "NFS"
size = 6
}
output "d4s_pgadmin_pgadmin" {
value = openstack_sharedfilesystem_share_v2.d4s_pgadmin_pgadmin
}
# Allow access to the NFS share
resource "openstack_sharedfilesystem_share_access_v2" "d4s_pgadmin_pgadmin_swarm_mgr_acl" {
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.d4s_pgadmin_pgadmin.id
access_type = "ip"
access_to = each.key
access_level = "rw"
}
output "d4s_pgadmin_pgadmin_swarm_mgr_acl" {
value = openstack_sharedfilesystem_share_access_v2.d4s_pgadmin_pgadmin_swarm_mgr_acl
sensitive = true
}
resource "openstack_sharedfilesystem_share_access_v2" "d4s_pgadmin_pgadmin_swarm_workers_acl" {
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.d4s_pgadmin_pgadmin.id
access_type = "ip"
access_to = each.key
access_level = "rw"
}
output "d4s_pgadmin_pgadmin_swarm_workers_acl" {
value = openstack_sharedfilesystem_share_access_v2.d4s_pgadmin_pgadmin_swarm_workers_acl
sensitive = true
}

View File

@ -1,7 +1,7 @@
{
"version": 4,
"terraform_version": "1.7.5",
"serial": 137,
"serial": 150,
"lineage": "469b016d-9a6f-ee57-0101-33f53e953cd5",
"outputs": {
"ccp_production_methods_logs": {
@ -900,6 +900,454 @@
],
"sensitive": true
},
"d4s_pgadmin_pgadmin": {
"value": {
"all_metadata": {},
"availability_zone": "nova",
"description": "NFS share for the D4Science production pgAdmin instance",
"export_locations": [
{
"path": "172.17.0.7:/volumes/_nogroup/35f9e34c-7e99-45f9-a3e9-7166f98221cc/b497e5f5-dac4-4ba5-9ebc-7edaf3b61726",
"preferred": "false"
}
],
"has_replicas": false,
"host": "",
"id": "a7c72f36-943d-4b0b-99d8-ff9b7e3d7eb9",
"is_public": false,
"metadata": null,
"name": "d4s_pgadmin_pgadmin",
"project_id": "1b45adf388934758b56d0dfdb4bfacf3",
"region": "isti_area_pi_1",
"replication_type": "",
"share_network_id": "",
"share_proto": "NFS",
"share_server_id": "",
"share_type": "default",
"size": 6,
"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"
}
]
}
]
},
"d4s_pgadmin_pgadmin_swarm_mgr_acl": {
"value": {
"172.17.1.180": {
"access_key": "",
"access_level": "rw",
"access_to": "172.17.1.180",
"access_type": "ip",
"id": "35f47051-5160-44d2-a244-b222744c0042",
"region": "isti_area_pi_1",
"share_id": "a7c72f36-943d-4b0b-99d8-ff9b7e3d7eb9",
"state": "active",
"timeouts": null
},
"172.17.2.236": {
"access_key": "",
"access_level": "rw",
"access_to": "172.17.2.236",
"access_type": "ip",
"id": "391a417f-ebf1-4da4-b83d-db6d92fe08a7",
"region": "isti_area_pi_1",
"share_id": "a7c72f36-943d-4b0b-99d8-ff9b7e3d7eb9",
"state": "active",
"timeouts": null
},
"172.17.3.65": {
"access_key": "",
"access_level": "rw",
"access_to": "172.17.3.65",
"access_type": "ip",
"id": "67234f9f-6ff5-4b1b-aad2-1e9a197c0534",
"region": "isti_area_pi_1",
"share_id": "a7c72f36-943d-4b0b-99d8-ff9b7e3d7eb9",
"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
},
"d4s_pgadmin_pgadmin_swarm_workers_acl": {
"value": {
"172.17.0.155": {
"access_key": "",
"access_level": "rw",
"access_to": "172.17.0.155",
"access_type": "ip",
"id": "0b477b98-b319-4892-91c5-a81210a187b3",
"region": "isti_area_pi_1",
"share_id": "a7c72f36-943d-4b0b-99d8-ff9b7e3d7eb9",
"state": "active",
"timeouts": null
},
"172.17.1.142": {
"access_key": "",
"access_level": "rw",
"access_to": "172.17.1.142",
"access_type": "ip",
"id": "01c91d2c-ca20-4f9d-b4ef-c5c50d2bb064",
"region": "isti_area_pi_1",
"share_id": "a7c72f36-943d-4b0b-99d8-ff9b7e3d7eb9",
"state": "active",
"timeouts": null
},
"172.17.1.185": {
"access_key": "",
"access_level": "rw",
"access_to": "172.17.1.185",
"access_type": "ip",
"id": "5380a03c-453a-478b-a763-8e1b20b24fd3",
"region": "isti_area_pi_1",
"share_id": "a7c72f36-943d-4b0b-99d8-ff9b7e3d7eb9",
"state": "active",
"timeouts": null
},
"172.17.1.62": {
"access_key": "",
"access_level": "rw",
"access_to": "172.17.1.62",
"access_type": "ip",
"id": "7128ae27-1f09-4c88-8427-e1ef8b265657",
"region": "isti_area_pi_1",
"share_id": "a7c72f36-943d-4b0b-99d8-ff9b7e3d7eb9",
"state": "active",
"timeouts": null
},
"172.17.1.65": {
"access_key": "",
"access_level": "rw",
"access_to": "172.17.1.65",
"access_type": "ip",
"id": "788e3e29-cf31-432e-b026-2706dbbf3373",
"region": "isti_area_pi_1",
"share_id": "a7c72f36-943d-4b0b-99d8-ff9b7e3d7eb9",
"state": "active",
"timeouts": null
},
"172.17.3.251": {
"access_key": "",
"access_level": "rw",
"access_to": "172.17.3.251",
"access_type": "ip",
"id": "35b8e26d-5557-447d-88a4-5e5a899f25cf",
"region": "isti_area_pi_1",
"share_id": "a7c72f36-943d-4b0b-99d8-ff9b7e3d7eb9",
"state": "active",
"timeouts": null
},
"172.17.3.55": {
"access_key": "",
"access_level": "rw",
"access_to": "172.17.3.55",
"access_type": "ip",
"id": "b6e01bca-7213-4cd9-ab0e-6112aa1dd1d1",
"region": "isti_area_pi_1",
"share_id": "a7c72f36-943d-4b0b-99d8-ff9b7e3d7eb9",
"state": "active",
"timeouts": null
},
"172.17.3.9": {
"access_key": "",
"access_level": "rw",
"access_to": "172.17.3.9",
"access_type": "ip",
"id": "4a60181c-2e4b-4f55-a5eb-d47aa36c69f8",
"region": "isti_area_pi_1",
"share_id": "a7c72f36-943d-4b0b-99d8-ff9b7e3d7eb9",
"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
},
"itineris_wp8_pgadmin": {
"value": {
"all_metadata": {},
@ -9803,6 +10251,253 @@
}
]
},
{
"mode": "managed",
"type": "openstack_sharedfilesystem_share_access_v2",
"name": "d4s_pgadmin_pgadmin_swarm_mgr_acl",
"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": "35f47051-5160-44d2-a244-b222744c0042",
"region": "isti_area_pi_1",
"share_id": "a7c72f36-943d-4b0b-99d8-ff9b7e3d7eb9",
"state": "active",
"timeouts": null
},
"sensitive_attributes": [],
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
"dependencies": [
"data.terraform_remote_state.main_infrastructure",
"openstack_sharedfilesystem_share_v2.d4s_pgadmin_pgadmin"
]
},
{
"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": "391a417f-ebf1-4da4-b83d-db6d92fe08a7",
"region": "isti_area_pi_1",
"share_id": "a7c72f36-943d-4b0b-99d8-ff9b7e3d7eb9",
"state": "active",
"timeouts": null
},
"sensitive_attributes": [],
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
"dependencies": [
"data.terraform_remote_state.main_infrastructure",
"openstack_sharedfilesystem_share_v2.d4s_pgadmin_pgadmin"
]
},
{
"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": "67234f9f-6ff5-4b1b-aad2-1e9a197c0534",
"region": "isti_area_pi_1",
"share_id": "a7c72f36-943d-4b0b-99d8-ff9b7e3d7eb9",
"state": "active",
"timeouts": null
},
"sensitive_attributes": [],
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
"dependencies": [
"data.terraform_remote_state.main_infrastructure",
"openstack_sharedfilesystem_share_v2.d4s_pgadmin_pgadmin"
]
}
]
},
{
"mode": "managed",
"type": "openstack_sharedfilesystem_share_access_v2",
"name": "d4s_pgadmin_pgadmin_swarm_workers_acl",
"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": "0b477b98-b319-4892-91c5-a81210a187b3",
"region": "isti_area_pi_1",
"share_id": "a7c72f36-943d-4b0b-99d8-ff9b7e3d7eb9",
"state": "active",
"timeouts": null
},
"sensitive_attributes": [],
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
"dependencies": [
"data.terraform_remote_state.main_infrastructure",
"openstack_sharedfilesystem_share_v2.d4s_pgadmin_pgadmin"
]
},
{
"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": "01c91d2c-ca20-4f9d-b4ef-c5c50d2bb064",
"region": "isti_area_pi_1",
"share_id": "a7c72f36-943d-4b0b-99d8-ff9b7e3d7eb9",
"state": "active",
"timeouts": null
},
"sensitive_attributes": [],
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
"dependencies": [
"data.terraform_remote_state.main_infrastructure",
"openstack_sharedfilesystem_share_v2.d4s_pgadmin_pgadmin"
]
},
{
"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": "5380a03c-453a-478b-a763-8e1b20b24fd3",
"region": "isti_area_pi_1",
"share_id": "a7c72f36-943d-4b0b-99d8-ff9b7e3d7eb9",
"state": "active",
"timeouts": null
},
"sensitive_attributes": [],
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
"dependencies": [
"data.terraform_remote_state.main_infrastructure",
"openstack_sharedfilesystem_share_v2.d4s_pgadmin_pgadmin"
]
},
{
"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": "7128ae27-1f09-4c88-8427-e1ef8b265657",
"region": "isti_area_pi_1",
"share_id": "a7c72f36-943d-4b0b-99d8-ff9b7e3d7eb9",
"state": "active",
"timeouts": null
},
"sensitive_attributes": [],
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
"dependencies": [
"data.terraform_remote_state.main_infrastructure",
"openstack_sharedfilesystem_share_v2.d4s_pgadmin_pgadmin"
]
},
{
"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": "788e3e29-cf31-432e-b026-2706dbbf3373",
"region": "isti_area_pi_1",
"share_id": "a7c72f36-943d-4b0b-99d8-ff9b7e3d7eb9",
"state": "active",
"timeouts": null
},
"sensitive_attributes": [],
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
"dependencies": [
"data.terraform_remote_state.main_infrastructure",
"openstack_sharedfilesystem_share_v2.d4s_pgadmin_pgadmin"
]
},
{
"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": "35b8e26d-5557-447d-88a4-5e5a899f25cf",
"region": "isti_area_pi_1",
"share_id": "a7c72f36-943d-4b0b-99d8-ff9b7e3d7eb9",
"state": "active",
"timeouts": null
},
"sensitive_attributes": [],
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
"dependencies": [
"data.terraform_remote_state.main_infrastructure",
"openstack_sharedfilesystem_share_v2.d4s_pgadmin_pgadmin"
]
},
{
"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": "b6e01bca-7213-4cd9-ab0e-6112aa1dd1d1",
"region": "isti_area_pi_1",
"share_id": "a7c72f36-943d-4b0b-99d8-ff9b7e3d7eb9",
"state": "active",
"timeouts": null
},
"sensitive_attributes": [],
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
"dependencies": [
"data.terraform_remote_state.main_infrastructure",
"openstack_sharedfilesystem_share_v2.d4s_pgadmin_pgadmin"
]
},
{
"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": "4a60181c-2e4b-4f55-a5eb-d47aa36c69f8",
"region": "isti_area_pi_1",
"share_id": "a7c72f36-943d-4b0b-99d8-ff9b7e3d7eb9",
"state": "active",
"timeouts": null
},
"sensitive_attributes": [],
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
"dependencies": [
"data.terraform_remote_state.main_infrastructure",
"openstack_sharedfilesystem_share_v2.d4s_pgadmin_pgadmin"
]
}
]
},
{
"mode": "managed",
"type": "openstack_sharedfilesystem_share_access_v2",
@ -11612,6 +12307,46 @@
}
]
},
{
"mode": "managed",
"type": "openstack_sharedfilesystem_share_v2",
"name": "d4s_pgadmin_pgadmin",
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
"instances": [
{
"schema_version": 0,
"attributes": {
"all_metadata": {},
"availability_zone": "nova",
"description": "NFS share for the D4Science production pgAdmin instance",
"export_locations": [
{
"path": "172.17.0.7:/volumes/_nogroup/35f9e34c-7e99-45f9-a3e9-7166f98221cc/b497e5f5-dac4-4ba5-9ebc-7edaf3b61726",
"preferred": "false"
}
],
"has_replicas": false,
"host": "",
"id": "a7c72f36-943d-4b0b-99d8-ff9b7e3d7eb9",
"is_public": false,
"metadata": null,
"name": "d4s_pgadmin_pgadmin",
"project_id": "1b45adf388934758b56d0dfdb4bfacf3",
"region": "isti_area_pi_1",
"replication_type": "",
"share_network_id": "",
"share_proto": "NFS",
"share_server_id": "",
"share_type": "default",
"size": 6,
"snapshot_id": "",
"timeouts": null
},
"sensitive_attributes": [],
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19"
}
]
},
{
"mode": "managed",
"type": "openstack_sharedfilesystem_share_v2",