Added StorageHub3 in production

This commit is contained in:
Giancarlo Panichi 2024-11-07 17:51:30 +01:00
parent 5c2854ef55
commit 83b57ee8cd
4 changed files with 577 additions and 1171 deletions

View File

@ -1,10 +1,14 @@
Queste risorse verranno allocate quando saremo pronti alla migrazione
# Define required providers # Define required providers
terraform { terraform {
required_version = ">= 0.14.0" required_version = ">= 0.14.0"
required_providers { required_providers {
openstack = { openstack = {
source = "terraform-provider-openstack/openstack" source = "terraform-provider-openstack/openstack"
version = "~> 1.53.0" version = ">= 1.54.0"
} }
} }
} }

File diff suppressed because it is too large Load Diff

View File

@ -41,7 +41,31 @@ resource "openstack_blockstorage_volume_v3" "storagehub_prod_temp_volume" {
size = "80" size = "80"
} }
# Instances resource "openstack_blockstorage_volume_v3" "storagehub3_prod_data_volume" {
name = "storagehub3_data_volume"
size = "120"
}
resource "openstack_blockstorage_volume_v3" "storagehub4_prod_data_volume" {
name = "storagehub4_data_volume"
size = "120"
}
resource "openstack_blockstorage_volume_v3" "storagehub3_prod_temp_volume" {
name = "storagehub3_temp_volume"
size = "80"
}
resource "openstack_blockstorage_volume_v3" "storagehub4_prod_temp_volume" {
name = "storagehub4_temp_volume"
size = "80"
}
# Instance 1
resource "openstack_compute_instance_v2" "storagehub1_prod" { resource "openstack_compute_instance_v2" "storagehub1_prod" {
name = "storagehub1" name = "storagehub1"
availability_zone_hints = module.common_variables.availability_zone_no_gpu_name availability_zone_hints = module.common_variables.availability_zone_no_gpu_name
@ -78,6 +102,7 @@ resource "openstack_compute_instance_v2" "storagehub1_prod" {
} }
} }
#Instance 2
resource "openstack_compute_instance_v2" "storagehub2_prod" { resource "openstack_compute_instance_v2" "storagehub2_prod" {
name = "storagehub2" name = "storagehub2"
availability_zone_hints = module.common_variables.availability_zone_no_gpu_name availability_zone_hints = module.common_variables.availability_zone_no_gpu_name
@ -114,8 +139,85 @@ resource "openstack_compute_instance_v2" "storagehub2_prod" {
} }
} }
# Instance 3
resource "openstack_compute_instance_v2" "storagehub3_prod" {
name = "storagehub3"
availability_zone_hints = module.common_variables.availability_zone_no_gpu_name
flavor_name = "m2.large"
key_pair = module.ssh_settings.ssh_key_name
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers]
block_device {
uuid = module.common_variables.ubuntu_2404.uuid
source_type = "image"
volume_size = 40
boot_index = 0
destination_type = "volume"
delete_on_termination = false
}
# Creates the networks according to input networks
dynamic "network" {
for_each = toset([data.terraform_remote_state.privnet_dns_router.outputs.main_private_network.name, module.common_variables.networks_list.shared_postgresql])
content {
name = network.value
}
}
# user_data script used
user_data = file("${module.common_variables.ubuntu_2404.user_data_file}")
# Do not replace the instance when the ssh key changes
lifecycle {
ignore_changes = [
# Ignore changes to tags, e.g. because a management agent
# updates these based on some ruleset managed elsewhere.
key_pair, user_data, network
]
}
}
# Instance 4
resource "openstack_compute_instance_v2" "storagehub4_prod" {
name = "storagehub4"
availability_zone_hints = module.common_variables.availability_zone_no_gpu_name
flavor_name = "m2.large"
key_pair = module.ssh_settings.ssh_key_name
security_groups = [data.terraform_remote_state.privnet_dns_router.outputs.default_security_group_name, data.terraform_remote_state.privnet_dns_router.outputs.security_group_list.http_and_https_from_the_load_balancers]
block_device {
uuid = module.common_variables.ubuntu_2404.uuid
source_type = "image"
volume_size = 40
boot_index = 0
destination_type = "volume"
delete_on_termination = false
}
# Creates the networks according to input networks
dynamic "network" {
for_each = toset([data.terraform_remote_state.privnet_dns_router.outputs.main_private_network.name, module.common_variables.networks_list.shared_postgresql])
content {
name = network.value
}
}
# user_data script used
user_data = file("${module.common_variables.ubuntu_2404.user_data_file}")
# Do not replace the instance when the ssh key changes
lifecycle {
ignore_changes = [
# Ignore changes to tags, e.g. because a management agent
# updates these based on some ruleset managed elsewhere.
key_pair, user_data, network
]
}
}
# Attach 1
resource "openstack_compute_volume_attach_v2" "storagehub1_attach_1" { resource "openstack_compute_volume_attach_v2" "storagehub1_attach_1" {
instance_id = openstack_compute_instance_v2.storagehub1_prod.id instance_id = openstack_compute_instance_v2.storagehub1_prod.id
volume_id = openstack_blockstorage_volume_v3.storagehub_prod_data_volume.0.id volume_id = openstack_blockstorage_volume_v3.storagehub_prod_data_volume.0.id
@ -130,6 +232,7 @@ resource "openstack_compute_volume_attach_v2" "storagehub1_attach_2" {
depends_on = [openstack_compute_volume_attach_v2.storagehub1_attach_1] depends_on = [openstack_compute_volume_attach_v2.storagehub1_attach_1]
} }
# Attach 2
resource "openstack_compute_volume_attach_v2" "storagehub2_attach_1" { resource "openstack_compute_volume_attach_v2" "storagehub2_attach_1" {
instance_id = openstack_compute_instance_v2.storagehub2_prod.id instance_id = openstack_compute_instance_v2.storagehub2_prod.id
volume_id = openstack_blockstorage_volume_v3.storagehub_prod_data_volume.1.id volume_id = openstack_blockstorage_volume_v3.storagehub_prod_data_volume.1.id
@ -144,6 +247,37 @@ resource "openstack_compute_volume_attach_v2" "storagehub2_attach_2" {
depends_on = [openstack_compute_volume_attach_v2.storagehub2_attach_1] depends_on = [openstack_compute_volume_attach_v2.storagehub2_attach_1]
} }
# Attach 3
resource "openstack_compute_volume_attach_v2" "storagehub3_attach_1" {
instance_id = openstack_compute_instance_v2.storagehub3_prod.id
volume_id = openstack_blockstorage_volume_v3.storagehub3_prod_data_volume.id
device = "/dev/vdb"
}
resource "openstack_compute_volume_attach_v2" "storagehub3_attach_2" {
instance_id = openstack_compute_instance_v2.storagehub3_prod.id
volume_id = openstack_blockstorage_volume_v3.storagehub3_prod_temp_volume.id
device = "/dev/vdc"
depends_on = [openstack_compute_volume_attach_v2.storagehub3_attach_1]
}
# Attach 4
resource "openstack_compute_volume_attach_v2" "storagehub4_attach_1" {
instance_id = openstack_compute_instance_v2.storagehub4_prod.id
volume_id = openstack_blockstorage_volume_v3.storagehub4_prod_data_volume.id
device = "/dev/vdb"
}
resource "openstack_compute_volume_attach_v2" "storagehub4_attach_2" {
instance_id = openstack_compute_instance_v2.storagehub4_prod.id
volume_id = openstack_blockstorage_volume_v3.storagehub4_prod_temp_volume.id
device = "/dev/vdc"
depends_on = [openstack_compute_volume_attach_v2.storagehub4_attach_1]
}
locals { locals {
@ -173,6 +307,22 @@ module "dns_records_create" {
type = "CNAME" type = "CNAME"
records = [local.cname_target] records = [local.cname_target]
}, },
storagehub3 = {
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
name = join(".", ["storagehub3", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
description = "StorageHub3"
ttl = 8600
type = "CNAME"
records = [local.cname_target]
},
storagehub4 = {
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
name = join(".", ["storagehub4", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])
description = "StorageHub4"
ttl = 8600
type = "CNAME"
records = [local.cname_target]
},
workspace_repo = { workspace_repo = {
zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id
name = join(".", ["workspace-repository", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name]) name = join(".", ["workspace-repository", data.terraform_remote_state.privnet_dns_router.outputs.dns_zone.zone_name])

View File

@ -1,7 +1,7 @@
{ {
"version": 4, "version": 4,
"terraform_version": "1.7.5", "terraform_version": "1.6.4",
"serial": 22, "serial": 47,
"lineage": "2fcb0d7a-4633-fecf-ab9f-0551f8d16805", "lineage": "2fcb0d7a-4633-fecf-ab9f-0551f8d16805",
"outputs": {}, "outputs": {},
"resources": [ "resources": [
@ -394,6 +394,138 @@
} }
] ]
}, },
{
"mode": "managed",
"type": "openstack_blockstorage_volume_v3",
"name": "storagehub3_prod_data_volume",
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
"instances": [
{
"schema_version": 0,
"attributes": {
"attachment": [],
"availability_zone": "nova",
"backup_id": "",
"consistency_group_id": null,
"description": "",
"enable_online_resize": null,
"id": "53a2bdb8-4c88-428c-a0f6-94dadecee31f",
"image_id": null,
"metadata": {},
"name": "storagehub3_data_volume",
"region": "isti_area_pi_1",
"scheduler_hints": [],
"size": 120,
"snapshot_id": "",
"source_replica": null,
"source_vol_id": "",
"timeouts": null,
"volume_type": "cephUnencrypted"
},
"sensitive_attributes": [],
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0="
}
]
},
{
"mode": "managed",
"type": "openstack_blockstorage_volume_v3",
"name": "storagehub3_prod_temp_volume",
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
"instances": [
{
"schema_version": 0,
"attributes": {
"attachment": [],
"availability_zone": "nova",
"backup_id": "",
"consistency_group_id": null,
"description": "",
"enable_online_resize": null,
"id": "5802b700-6392-4fd6-acc8-2892bab23bd9",
"image_id": null,
"metadata": {},
"name": "storagehub3_temp_volume",
"region": "isti_area_pi_1",
"scheduler_hints": [],
"size": 80,
"snapshot_id": "",
"source_replica": null,
"source_vol_id": "",
"timeouts": null,
"volume_type": "cephUnencrypted"
},
"sensitive_attributes": [],
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0="
}
]
},
{
"mode": "managed",
"type": "openstack_blockstorage_volume_v3",
"name": "storagehub4_prod_data_volume",
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
"instances": [
{
"schema_version": 0,
"attributes": {
"attachment": [],
"availability_zone": "nova",
"backup_id": "",
"consistency_group_id": null,
"description": "",
"enable_online_resize": null,
"id": "b645fdc0-1494-429a-8e9c-4dfc48f5faf9",
"image_id": null,
"metadata": {},
"name": "storagehub4_data_volume",
"region": "isti_area_pi_1",
"scheduler_hints": [],
"size": 120,
"snapshot_id": "",
"source_replica": null,
"source_vol_id": "",
"timeouts": null,
"volume_type": "cephUnencrypted"
},
"sensitive_attributes": [],
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0="
}
]
},
{
"mode": "managed",
"type": "openstack_blockstorage_volume_v3",
"name": "storagehub4_prod_temp_volume",
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
"instances": [
{
"schema_version": 0,
"attributes": {
"attachment": [],
"availability_zone": "nova",
"backup_id": "",
"consistency_group_id": null,
"description": "",
"enable_online_resize": null,
"id": "7c4a9ea8-c490-430c-b0dd-b2c1178c01e0",
"image_id": null,
"metadata": {},
"name": "storagehub4_temp_volume",
"region": "isti_area_pi_1",
"scheduler_hints": [],
"size": 80,
"snapshot_id": "",
"source_replica": null,
"source_vol_id": "",
"timeouts": null,
"volume_type": "cephUnencrypted"
},
"sensitive_attributes": [],
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0="
}
]
},
{ {
"mode": "managed", "mode": "managed",
"type": "openstack_blockstorage_volume_v3", "type": "openstack_blockstorage_volume_v3",
@ -657,7 +789,7 @@
], ],
"config_drive": null, "config_drive": null,
"created": "2024-02-06 16:25:57 +0000 UTC", "created": "2024-02-06 16:25:57 +0000 UTC",
"flavor_id": "14", "flavor_id": "20",
"flavor_name": "m2.large", "flavor_name": "m2.large",
"force_delete": false, "force_delete": false,
"id": "3aa1326a-773a-4f19-8fdb-b4c691d6b251", "id": "3aa1326a-773a-4f19-8fdb-b4c691d6b251",
@ -698,7 +830,7 @@
"stop_before_destroy": false, "stop_before_destroy": false,
"tags": [], "tags": [],
"timeouts": null, "timeouts": null,
"updated": "2024-06-26 16:05:05 +0000 UTC", "updated": "2024-06-26 17:10:06 +0000 UTC",
"user_data": "", "user_data": "",
"vendor_options": [] "vendor_options": []
}, },
@ -710,6 +842,179 @@
} }
] ]
}, },
{
"mode": "managed",
"type": "openstack_compute_instance_v2",
"name": "storagehub3_prod",
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
"instances": [
{
"schema_version": 0,
"attributes": {
"access_ip_v4": "10.1.43.186",
"access_ip_v6": "",
"admin_pass": null,
"all_metadata": {},
"all_tags": [],
"availability_zone": "cnr-isti-nova-a",
"availability_zone_hints": "cnr-isti-nova-a",
"block_device": [
{
"boot_index": 0,
"delete_on_termination": false,
"destination_type": "volume",
"device_type": "",
"disk_bus": "",
"guest_format": "",
"multiattach": false,
"source_type": "image",
"uuid": "fc3f705d-3cf5-4866-8ef6-ff6e2cdd4075",
"volume_size": 40,
"volume_type": ""
}
],
"config_drive": null,
"created": "2024-11-07 16:43:21 +0000 UTC",
"flavor_id": "20",
"flavor_name": "m2.large",
"force_delete": false,
"id": "4f1c4091-06de-4dc0-bd3f-556012f98fde",
"image_id": "Attempt to boot from volume - no image supplied",
"image_name": null,
"key_pair": "Giancarlo Panichi",
"metadata": null,
"name": "storagehub3",
"network": [
{
"access_network": false,
"fixed_ip_v4": "10.1.43.186",
"fixed_ip_v6": "",
"mac": "fa:16:3e:7f:97:cb",
"name": "d4s-production-cloud-main",
"port": "",
"uuid": "020df98d-ae72-452a-b376-3b6dc289acac"
},
{
"access_network": false,
"fixed_ip_v4": "192.168.2.119",
"fixed_ip_v6": "",
"mac": "fa:16:3e:ac:4f:9f",
"name": "postgresql-srv-net",
"port": "",
"uuid": "f6450bc8-1345-4b52-8f34-2903c0cca7f8"
}
],
"network_mode": null,
"personality": [],
"power_state": "active",
"region": "isti_area_pi_1",
"scheduler_hints": [],
"security_groups": [
"default_for_all",
"traffic_from_the_main_load_balancers"
],
"stop_before_destroy": false,
"tags": null,
"timeouts": null,
"updated": "2024-11-07 16:44:43 +0000 UTC",
"user_data": "bb83b25fd1219aa1b850ece9be8d7b0f31714608",
"vendor_options": []
},
"sensitive_attributes": [],
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInVwZGF0ZSI6MTgwMDAwMDAwMDAwMH19",
"dependencies": [
"data.terraform_remote_state.privnet_dns_router"
]
}
]
},
{
"mode": "managed",
"type": "openstack_compute_instance_v2",
"name": "storagehub4_prod",
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
"instances": [
{
"status": "tainted",
"schema_version": 0,
"attributes": {
"access_ip_v4": null,
"access_ip_v6": null,
"admin_pass": null,
"all_metadata": null,
"all_tags": [],
"availability_zone": null,
"availability_zone_hints": "cnr-isti-nova-a",
"block_device": [
{
"boot_index": 0,
"delete_on_termination": false,
"destination_type": "volume",
"device_type": "",
"disk_bus": "",
"guest_format": "",
"multiattach": false,
"source_type": "image",
"uuid": "fc3f705d-3cf5-4866-8ef6-ff6e2cdd4075",
"volume_size": 40,
"volume_type": ""
}
],
"config_drive": null,
"created": null,
"flavor_id": null,
"flavor_name": "m2.large",
"force_delete": false,
"id": "2bb4c4fb-5302-4fcc-951f-dba8438c4ec0",
"image_id": null,
"image_name": null,
"key_pair": "Giancarlo Panichi",
"metadata": null,
"name": "storagehub4",
"network": [
{
"access_network": false,
"fixed_ip_v4": "",
"fixed_ip_v6": "",
"mac": "",
"name": "d4s-production-cloud-main",
"port": "",
"uuid": ""
},
{
"access_network": false,
"fixed_ip_v4": "",
"fixed_ip_v6": "",
"mac": "",
"name": "postgresql-srv-net",
"port": "",
"uuid": ""
}
],
"network_mode": null,
"personality": [],
"power_state": "active",
"region": null,
"scheduler_hints": [],
"security_groups": [
"default_for_all",
"traffic_from_the_main_load_balancers"
],
"stop_before_destroy": false,
"tags": null,
"timeouts": null,
"updated": null,
"user_data": "bb83b25fd1219aa1b850ece9be8d7b0f31714608",
"vendor_options": []
},
"sensitive_attributes": [],
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInVwZGF0ZSI6MTgwMDAwMDAwMDAwMH19",
"dependencies": [
"data.terraform_remote_state.privnet_dns_router"
]
}
]
},
{ {
"mode": "managed", "mode": "managed",
"type": "openstack_compute_volume_attach_v2", "type": "openstack_compute_volume_attach_v2",
@ -830,6 +1135,66 @@
} }
] ]
}, },
{
"mode": "managed",
"type": "openstack_compute_volume_attach_v2",
"name": "storagehub3_attach_1",
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
"instances": [
{
"schema_version": 0,
"attributes": {
"device": "/dev/vdb",
"id": "4f1c4091-06de-4dc0-bd3f-556012f98fde/53a2bdb8-4c88-428c-a0f6-94dadecee31f",
"instance_id": "4f1c4091-06de-4dc0-bd3f-556012f98fde",
"multiattach": null,
"region": "isti_area_pi_1",
"tag": null,
"timeouts": null,
"vendor_options": [],
"volume_id": "53a2bdb8-4c88-428c-a0f6-94dadecee31f"
},
"sensitive_attributes": [],
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=",
"dependencies": [
"data.terraform_remote_state.privnet_dns_router",
"openstack_blockstorage_volume_v3.storagehub3_prod_data_volume",
"openstack_compute_instance_v2.storagehub3_prod"
]
}
]
},
{
"mode": "managed",
"type": "openstack_compute_volume_attach_v2",
"name": "storagehub3_attach_2",
"provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]",
"instances": [
{
"schema_version": 0,
"attributes": {
"device": "/dev/vdc",
"id": "4f1c4091-06de-4dc0-bd3f-556012f98fde/5802b700-6392-4fd6-acc8-2892bab23bd9",
"instance_id": "4f1c4091-06de-4dc0-bd3f-556012f98fde",
"multiattach": null,
"region": "isti_area_pi_1",
"tag": null,
"timeouts": null,
"vendor_options": [],
"volume_id": "5802b700-6392-4fd6-acc8-2892bab23bd9"
},
"sensitive_attributes": [],
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=",
"dependencies": [
"data.terraform_remote_state.privnet_dns_router",
"openstack_blockstorage_volume_v3.storagehub3_prod_data_volume",
"openstack_blockstorage_volume_v3.storagehub3_prod_temp_volume",
"openstack_compute_instance_v2.storagehub3_prod",
"openstack_compute_volume_attach_v2.storagehub3_attach_1"
]
}
]
},
{ {
"module": "module.dns_records_create", "module": "module.dns_records_create",
"mode": "managed", "mode": "managed",
@ -887,6 +1252,56 @@
"data.terraform_remote_state.privnet_dns_router" "data.terraform_remote_state.privnet_dns_router"
] ]
}, },
{
"index_key": "storagehub3",
"schema_version": 0,
"attributes": {
"description": "StorageHub3",
"disable_status_check": false,
"id": "74135b34-1a9c-4c01-8cf0-22450a5660c4/df73914d-53ad-48e9-818d-1f52686d7732",
"name": "storagehub3.cloud.d4science.org.",
"project_id": "1b45adf388934758b56d0dfdb4bfacf3",
"records": [
"main-lb.cloud.d4science.org."
],
"region": "isti_area_pi_1",
"timeouts": null,
"ttl": 8600,
"type": "CNAME",
"value_specs": null,
"zone_id": "74135b34-1a9c-4c01-8cf0-22450a5660c4"
},
"sensitive_attributes": [],
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
"dependencies": [
"data.terraform_remote_state.privnet_dns_router"
]
},
{
"index_key": "storagehub4",
"schema_version": 0,
"attributes": {
"description": "StorageHub4",
"disable_status_check": false,
"id": "74135b34-1a9c-4c01-8cf0-22450a5660c4/d3ee3004-39a4-47fa-a24c-9fdc58d58836",
"name": "storagehub4.cloud.d4science.org.",
"project_id": "1b45adf388934758b56d0dfdb4bfacf3",
"records": [
"main-lb.cloud.d4science.org."
],
"region": "isti_area_pi_1",
"timeouts": null,
"ttl": 8600,
"type": "CNAME",
"value_specs": null,
"zone_id": "74135b34-1a9c-4c01-8cf0-22450a5660c4"
},
"sensitive_attributes": [],
"private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19",
"dependencies": [
"data.terraform_remote_state.privnet_dns_router"
]
},
{ {
"index_key": "workspace_repo", "index_key": "workspace_repo",
"schema_version": 0, "schema_version": 0,