From 19c3cf4a615e9fd1ef136cd4d1c101a52a9ea6ed Mon Sep 17 00:00:00 2001 From: Andrea Dell'Amico Date: Thu, 5 Feb 2026 23:04:24 +0100 Subject: [PATCH] VM per il corso Kubernetes. --- infrascience/corso-k8s/main.tf | 137 + infrascience/corso-k8s/outputs.tf | 19 + infrascience/corso-k8s/provider.tf | 14 + infrascience/corso-k8s/terraform.tfstate | 4717 ++++++++++++++++++++++ 4 files changed, 4887 insertions(+) create mode 100644 infrascience/corso-k8s/main.tf create mode 100644 infrascience/corso-k8s/outputs.tf create mode 100644 infrascience/corso-k8s/provider.tf create mode 100644 infrascience/corso-k8s/terraform.tfstate diff --git a/infrascience/corso-k8s/main.tf b/infrascience/corso-k8s/main.tf new file mode 100644 index 0000000..38f6bce --- /dev/null +++ b/infrascience/corso-k8s/main.tf @@ -0,0 +1,137 @@ +# Kubernetes course VMs for InfraScience +# 14 Ubuntu 24.04 VMs with m1.large flavor, 100GB root volume, 200GB data volume, +# floating IP and DNS record each. + +data "terraform_remote_state" "privnet_dns_router" { + backend = "local" + config = { + path = "../main_net_dns_router/terraform.tfstate" + } +} + +module "labs_common_variables" { + source = "../../modules/labs_common_variables" +} + +module "ssh_settings" { + source = "../../modules/ssh-key-ref" +} + +locals { + vm_count = 14 + dns_zone = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone + dns_zone_id = data.terraform_remote_state.privnet_dns_router.outputs.dns_zone_id + main_private_network_id = data.terraform_remote_state.privnet_dns_router.outputs.main_private_network_id + main_private_subnet_id = data.terraform_remote_state.privnet_dns_router.outputs.main_subnet_network_id + floating_ip_pool = data.terraform_remote_state.privnet_dns_router.outputs.floating_ip_pools.main_public_ip_pool + availability_zone = module.labs_common_variables.availability_zones_names.availability_zone_no_gpu + default_sg_name = module.labs_common_variables.default_security_group_name +} + +# Look up the default security group by name, scoped to the infrascience project +data "openstack_networking_secgroup_v2" "default" { + name = local.default_sg_name + tenant_id = "3511cd5293dc435ea421aeb0edcfab43" +} + +# --- Security group: SSH from anywhere --- +resource "openstack_networking_secgroup_v2" "ssh_from_anywhere" { + name = "corso-k8s-ssh-from-anywhere" + description = "Allow SSH access from anywhere" + delete_default_rules = true +} + +resource "openstack_networking_secgroup_rule_v2" "ssh_from_anywhere_ingress" { + security_group_id = openstack_networking_secgroup_v2.ssh_from_anywhere.id + direction = "ingress" + ethertype = "IPv4" + protocol = "tcp" + port_range_min = 22 + port_range_max = 22 + remote_ip_prefix = "0.0.0.0/0" +} + +# --- Network ports --- +resource "openstack_networking_port_v2" "corso_k8s_port" { + count = local.vm_count + name = format("corso-k8s-%02d-port", count.index + 1) + admin_state_up = true + network_id = local.main_private_network_id + security_group_ids = [ + data.openstack_networking_secgroup_v2.default.id, + openstack_networking_secgroup_v2.ssh_from_anywhere.id, + ] + fixed_ip { + subnet_id = local.main_private_subnet_id + } +} + +# --- Data volumes (200 GB each) --- +resource "openstack_blockstorage_volume_v3" "corso_k8s_data_vol" { + count = local.vm_count + name = format("corso-k8s-%02d-data", count.index + 1) + size = 200 + enable_online_resize = true +} + +# --- Compute instances --- +resource "openstack_compute_instance_v2" "corso_k8s" { + count = local.vm_count + name = format("corso-k8s-%02d", count.index + 1) + availability_zone_hints = local.availability_zone + flavor_name = "m1.large" + key_pair = module.ssh_settings.ssh_key_name + + block_device { + uuid = module.labs_common_variables.ubuntu_2404.uuid + source_type = "image" + volume_size = 100 + boot_index = 0 + destination_type = "volume" + delete_on_termination = false + } + + network { + port = openstack_networking_port_v2.corso_k8s_port[count.index].id + } + + user_data = file("${module.labs_common_variables.ubuntu2404_data_file}") + + lifecycle { + ignore_changes = [ + key_pair, user_data, network + ] + } +} + +# --- Attach data volumes --- +resource "openstack_compute_volume_attach_v2" "corso_k8s_data_vol_attach" { + count = local.vm_count + instance_id = openstack_compute_instance_v2.corso_k8s[count.index].id + volume_id = openstack_blockstorage_volume_v3.corso_k8s_data_vol[count.index].id + device = "/dev/vdb" +} + +# --- Floating IPs --- +resource "openstack_networking_floatingip_v2" "corso_k8s_ip" { + count = local.vm_count + pool = local.floating_ip_pool + description = format("Public IP for corso-k8s-%02d", count.index + 1) +} + +resource "openstack_networking_floatingip_associate_v2" "corso_k8s_ip" { + count = local.vm_count + floating_ip = openstack_networking_floatingip_v2.corso_k8s_ip[count.index].address + port_id = openstack_networking_port_v2.corso_k8s_port[count.index].id +} + +# --- DNS records --- +resource "openstack_dns_recordset_v2" "corso_k8s_dns" { + count = local.vm_count + zone_id = local.dns_zone_id + name = format("corso-k8s-%02d.%s", count.index + 1, local.dns_zone.name) + description = format("Public IP of corso-k8s-%02d", count.index + 1) + ttl = 8600 + type = "A" + records = [openstack_networking_floatingip_v2.corso_k8s_ip[count.index].address] +} diff --git a/infrascience/corso-k8s/outputs.tf b/infrascience/corso-k8s/outputs.tf new file mode 100644 index 0000000..9898063 --- /dev/null +++ b/infrascience/corso-k8s/outputs.tf @@ -0,0 +1,19 @@ +output "corso_k8s_instances" { + description = "Instance IDs of the corso-k8s VMs" + value = openstack_compute_instance_v2.corso_k8s[*].id +} + +output "corso_k8s_public_ips" { + description = "Floating IP addresses of the corso-k8s VMs" + value = openstack_networking_floatingip_v2.corso_k8s_ip[*].address +} + +output "corso_k8s_hostnames" { + description = "DNS hostnames of the corso-k8s VMs" + value = openstack_dns_recordset_v2.corso_k8s_dns[*].name +} + +output "corso_k8s_private_ips" { + description = "Private IP addresses of the corso-k8s VMs" + value = openstack_networking_port_v2.corso_k8s_port[*].all_fixed_ips +} diff --git a/infrascience/corso-k8s/provider.tf b/infrascience/corso-k8s/provider.tf new file mode 100644 index 0000000..2f63d7d --- /dev/null +++ b/infrascience/corso-k8s/provider.tf @@ -0,0 +1,14 @@ +# Define required providers +terraform { + required_version = ">= 0.14.0" + required_providers { + openstack = { + source = "terraform-provider-openstack/openstack" + version = ">= 2.0.0" + } + } +} + +provider "openstack" { + cloud = "infrascience" +} diff --git a/infrascience/corso-k8s/terraform.tfstate b/infrascience/corso-k8s/terraform.tfstate new file mode 100644 index 0000000..c1e8279 --- /dev/null +++ b/infrascience/corso-k8s/terraform.tfstate @@ -0,0 +1,4717 @@ +{ + "version": 4, + "terraform_version": "1.14.3", + "serial": 101, + "lineage": "cdb2e0d3-34e3-cabc-8e32-5495109ce7cf", + "outputs": { + "corso_k8s_hostnames": { + "value": [ + "corso-k8s-01.infrascience.cloud.isti.cnr.it.", + "corso-k8s-02.infrascience.cloud.isti.cnr.it.", + "corso-k8s-03.infrascience.cloud.isti.cnr.it.", + "corso-k8s-04.infrascience.cloud.isti.cnr.it.", + "corso-k8s-05.infrascience.cloud.isti.cnr.it.", + "corso-k8s-06.infrascience.cloud.isti.cnr.it.", + "corso-k8s-07.infrascience.cloud.isti.cnr.it.", + "corso-k8s-08.infrascience.cloud.isti.cnr.it.", + "corso-k8s-09.infrascience.cloud.isti.cnr.it.", + "corso-k8s-10.infrascience.cloud.isti.cnr.it.", + "corso-k8s-11.infrascience.cloud.isti.cnr.it.", + "corso-k8s-12.infrascience.cloud.isti.cnr.it.", + "corso-k8s-13.infrascience.cloud.isti.cnr.it.", + "corso-k8s-14.infrascience.cloud.isti.cnr.it." + ], + "type": [ + "tuple", + [ + "string", + "string", + "string", + "string", + "string", + "string", + "string", + "string", + "string", + "string", + "string", + "string", + "string", + "string" + ] + ] + }, + "corso_k8s_instances": { + "value": [ + "c8975398-c93f-46bf-af43-de63b244334c", + "f129b7df-60e6-4a33-9a2b-4061d3a09100", + "b2304dd7-738b-4f06-8ff8-25211cd01c2a", + "7c2c14ed-f18b-4395-85b8-98288f8b9d5a", + "95101c77-73b2-4fc3-82de-a5cf35229eb9", + "4e95339b-a836-4c7d-bd85-1da53b400b66", + "6eb1a46d-da2f-4fa0-aca4-854ce27d589d", + "7b8aabc4-8731-4376-937e-0db4369f9adb", + "74926fb1-5a32-4f74-a089-baf78ade5669", + "e9615030-7ef7-4d6d-9802-22e8dc12a4cc", + "2adf83a1-a104-4404-88d6-0eae2bb6735f", + "f567ad7f-a911-4bb6-90db-d8b7ca1063c1", + "b9575bf8-5988-40d2-a9e5-6027f937adb4", + "062875d5-4498-48ea-93fa-75c2483baab3" + ], + "type": [ + "tuple", + [ + "string", + "string", + "string", + "string", + "string", + "string", + "string", + "string", + "string", + "string", + "string", + "string", + "string", + "string" + ] + ] + }, + "corso_k8s_private_ips": { + "value": [ + [ + "10.16.3.161" + ], + [ + "10.16.4.133" + ], + [ + "10.16.2.202" + ], + [ + "10.16.1.9" + ], + [ + "10.16.4.153" + ], + [ + "10.16.2.163" + ], + [ + "10.16.2.18" + ], + [ + "10.16.3.131" + ], + [ + "10.16.3.113" + ], + [ + "10.16.3.45" + ], + [ + "10.16.1.196" + ], + [ + "10.16.2.187" + ], + [ + "10.16.4.27" + ], + [ + "10.16.1.100" + ] + ], + "type": [ + "tuple", + [ + [ + "list", + "string" + ], + [ + "list", + "string" + ], + [ + "list", + "string" + ], + [ + "list", + "string" + ], + [ + "list", + "string" + ], + [ + "list", + "string" + ], + [ + "list", + "string" + ], + [ + "list", + "string" + ], + [ + "list", + "string" + ], + [ + "list", + "string" + ], + [ + "list", + "string" + ], + [ + "list", + "string" + ], + [ + "list", + "string" + ], + [ + "list", + "string" + ] + ] + ] + }, + "corso_k8s_public_ips": { + "value": [ + "146.48.30.2", + "146.48.30.250", + "146.48.29.226", + "146.48.31.133", + "146.48.30.52", + "146.48.29.237", + "146.48.31.77", + "146.48.30.209", + "146.48.30.22", + "146.48.30.31", + "146.48.30.5", + "146.48.30.204", + "146.48.31.120", + "146.48.31.53" + ], + "type": [ + "tuple", + [ + "string", + "string", + "string", + "string", + "string", + "string", + "string", + "string", + "string", + "string", + "string", + "string", + "string", + "string" + ] + ] + } + }, + "resources": [ + { + "mode": "data", + "type": "openstack_networking_secgroup_v2", + "name": "default", + "provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]", + "instances": [ + { + "schema_version": 0, + "attributes": { + "all_tags": [], + "description": "Default security group with rules that allow ssh access from the ISTI networks, http, https", + "id": "d7fa1992-ce11-4508-b8d3-296fdba6c5a1", + "name": "default_for_all", + "region": "isti_area_pi_1", + "secgroup_id": null, + "stateful": false, + "tags": null, + "tenant_id": "3511cd5293dc435ea421aeb0edcfab43" + }, + "sensitive_attributes": [], + "identity_schema_version": 0 + } + ] + }, + { + "mode": "data", + "type": "terraform_remote_state", + "name": "privnet_dns_router", + "provider": "provider[\"terraform.io/builtin/terraform\"]", + "instances": [ + { + "schema_version": 0, + "attributes": { + "backend": "local", + "config": { + "value": { + "path": "../main_net_dns_router/terraform.tfstate" + }, + "type": [ + "object", + { + "path": "string" + } + ] + }, + "defaults": null, + "outputs": { + "value": { + "almalinux_9": { + "name": "AlmaLinux-9.0-20220718", + "uuid": "541650fc-dd19-4f38-bb1d-7333ed9dd688" + }, + "availability_zone_no_gpu_name": "cnr-isti-nova-a", + "availability_zone_with_gpu_name": "cnr-isti-nova-gpu-a", + "availability_zones_names": { + "availability_zone_no_gpu": "cnr-isti-nova-a", + "availability_zone_with_gpu": "cnr-isti-nova-gpu-a" + }, + "centos_7": { + "name": "CentOS-7", + "user_data_file": "../../s2i2s_openstack_vm_data_scripts/el.sh", + "uuid": "f0187a99-64f6-462a-ab5f-ef52fe62f2ca" + }, + "default_security_group_name": "default_for_all", + "dns_zone": { + "attributes": null, + "description": "DNS primary zone for the InfraScience project", + "disable_status_check": false, + "email": "postmaster@isti.cnr.it", + "id": "d10e7c2f-e856-4b8e-b5a1-33afa0f87ca8", + "masters": null, + "name": "infrascience.cloud.isti.cnr.it.", + "project_id": "3511cd5293dc435ea421aeb0edcfab43", + "region": "isti_area_pi_1", + "timeouts": null, + "ttl": 8600, + "type": "PRIMARY", + "value_specs": null + }, + "dns_zone_id": "d10e7c2f-e856-4b8e-b5a1-33afa0f87ca8", + "el7_data_file": "../../s2i2s_openstack_vm_data_scripts/el.sh", + "external_gateway_ip": [ + { + "ip_address": "146.48.30.166", + "subnet_id": "57f87509-4016-46fb-b8c3-25fca7f72ccb" + } + ], + "external_network": { + "id": "1d2ff137-6ff7-4017-be2b-0d6c4af2353b", + "name": "external-network" + }, + "external_network_id": "1d2ff137-6ff7-4017-be2b-0d6c4af2353b", + "flavor_list": { + "c1_large": "c1.large", + "c1_medium": "c1.medium", + "c1_small": "c1.small", + "c2_large": "c2.large", + "m1_large": "m1.large", + "m1_medium": "m1.medium", + "m1_xlarge": "m1.xlarge", + "m1_xxl": "m1.xxl", + "m2_large": "m2.large", + "m2_medium": "m2.medium", + "m2_small": "m2.small", + "m3_large": "m3.large" + }, + "floating_ip_pools": { + "main_public_ip_pool": "external-network" + }, + "main_private_network": { + "admin_state_up": true, + "all_tags": [], + "availability_zone_hints": [], + "description": "InfraScience private network (use this as the main network)", + "dns_domain": "infrascience.cloud.isti.cnr.it.", + "external": false, + "id": "3fec28ce-1f6f-44e7-8084-9fc67a25d7c4", + "mtu": 8942, + "name": "infrascience-cloud-main", + "port_security_enabled": true, + "qos_policy_id": "", + "region": "isti_area_pi_1", + "segments": [ + { + "network_type": "geneve", + "physical_network": "", + "segmentation_id": 34048 + } + ], + "shared": false, + "tags": null, + "tenant_id": "3511cd5293dc435ea421aeb0edcfab43", + "timeouts": null, + "transparent_vlan": false, + "value_specs": null + }, + "main_private_network_id": "3fec28ce-1f6f-44e7-8084-9fc67a25d7c4", + "main_region": "isti_area_pi_1", + "main_subnet_network": { + "all_tags": [], + "allocation_pool": [ + { + "end": "10.16.7.254", + "start": "10.16.1.1" + } + ], + "allocation_pools": [ + { + "end": "10.16.7.254", + "start": "10.16.1.1" + } + ], + "cidr": "10.16.0.0/21", + "description": "InfraScience main private subnet", + "dns_nameservers": [ + "146.48.29.97", + "146.48.29.98", + "146.48.29.99" + ], + "enable_dhcp": true, + "gateway_ip": "10.16.0.1", + "host_routes": [], + "id": "5daf14c3-8af3-49e1-9ae0-90cfc0432016", + "ip_version": 4, + "ipv6_address_mode": "", + "ipv6_ra_mode": "", + "name": "infrascience-cloud-main-subnet", + "network_id": "3fec28ce-1f6f-44e7-8084-9fc67a25d7c4", + "no_gateway": false, + "prefix_length": null, + "region": "isti_area_pi_1", + "service_types": [], + "subnetpool_id": "", + "tags": null, + "tenant_id": "3511cd5293dc435ea421aeb0edcfab43", + "timeouts": null, + "value_specs": null + }, + "main_subnet_network_id": "5daf14c3-8af3-49e1-9ae0-90cfc0432016", + "mtu_size": 8942, + "os_project_data": { + "id": "3511cd5293dc435ea421aeb0edcfab43", + "name": "infrascience-lab-cloud" + }, + "policy_list": { + "affinity": "affinity", + "anti_affinity": "anti-affinity", + "soft_affinity": "soft-affinity", + "soft_anti_affinity": "soft-anti-affinity" + }, + "resolvers_ip": [ + "146.48.29.97", + "146.48.29.98", + "146.48.29.99" + ], + "ssh_sources": { + "infrascience_net_cidr": "146.48.122.0/23", + "isti_net_cidr": "146.48.80.0/21", + "isti_vpn_gw1": "146.48.80.101/32", + "isti_vpn_gw2": "146.48.80.102/32", + "isti_vpn_gw3": "146.48.80.103/32", + "s2i2s_net_cidr": "146.48.28.0/22", + "s2i2s_vpn_1_cidr": "146.48.28.10/32", + "s2i2s_vpn_2_cidr": "146.48.28.11/32" + }, + "ubuntu2204_data_file": "../../s2i2s_openstack_vm_data_scripts/ubuntu2204.sh", + "ubuntu_2204": { + "name": "Ubuntu-Jammy-22.04", + "user_data_file": "../../s2i2s_openstack_vm_data_scripts/ubuntu2204.sh", + "uuid": "54768889-8556-4be4-a2eb-82a4d9b34627" + } + }, + "type": [ + "object", + { + "almalinux_9": [ + "map", + "string" + ], + "availability_zone_no_gpu_name": "string", + "availability_zone_with_gpu_name": "string", + "availability_zones_names": [ + "map", + "string" + ], + "centos_7": [ + "map", + "string" + ], + "default_security_group_name": "string", + "dns_zone": [ + "object", + { + "attributes": [ + "map", + "string" + ], + "description": "string", + "disable_status_check": "bool", + "email": "string", + "id": "string", + "masters": [ + "set", + "string" + ], + "name": "string", + "project_id": "string", + "region": "string", + "timeouts": [ + "object", + { + "create": "string", + "delete": "string", + "update": "string" + } + ], + "ttl": "number", + "type": "string", + "value_specs": [ + "map", + "string" + ] + } + ], + "dns_zone_id": "string", + "el7_data_file": "string", + "external_gateway_ip": [ + "list", + [ + "object", + { + "ip_address": "string", + "subnet_id": "string" + } + ] + ], + "external_network": [ + "map", + "string" + ], + "external_network_id": "string", + "flavor_list": [ + "map", + "string" + ], + "floating_ip_pools": [ + "map", + "string" + ], + "main_private_network": [ + "object", + { + "admin_state_up": "bool", + "all_tags": [ + "set", + "string" + ], + "availability_zone_hints": [ + "set", + "string" + ], + "description": "string", + "dns_domain": "string", + "external": "bool", + "id": "string", + "mtu": "number", + "name": "string", + "port_security_enabled": "bool", + "qos_policy_id": "string", + "region": "string", + "segments": [ + "set", + [ + "object", + { + "network_type": "string", + "physical_network": "string", + "segmentation_id": "number" + } + ] + ], + "shared": "bool", + "tags": [ + "set", + "string" + ], + "tenant_id": "string", + "timeouts": [ + "object", + { + "create": "string", + "delete": "string" + } + ], + "transparent_vlan": "bool", + "value_specs": [ + "map", + "string" + ] + } + ], + "main_private_network_id": "string", + "main_region": "string", + "main_subnet_network": [ + "object", + { + "all_tags": [ + "set", + "string" + ], + "allocation_pool": [ + "set", + [ + "object", + { + "end": "string", + "start": "string" + } + ] + ], + "allocation_pools": [ + "list", + [ + "object", + { + "end": "string", + "start": "string" + } + ] + ], + "cidr": "string", + "description": "string", + "dns_nameservers": [ + "list", + "string" + ], + "enable_dhcp": "bool", + "gateway_ip": "string", + "host_routes": [ + "list", + [ + "object", + { + "destination_cidr": "string", + "next_hop": "string" + } + ] + ], + "id": "string", + "ip_version": "number", + "ipv6_address_mode": "string", + "ipv6_ra_mode": "string", + "name": "string", + "network_id": "string", + "no_gateway": "bool", + "prefix_length": "number", + "region": "string", + "service_types": [ + "list", + "string" + ], + "subnetpool_id": "string", + "tags": [ + "set", + "string" + ], + "tenant_id": "string", + "timeouts": [ + "object", + { + "create": "string", + "delete": "string" + } + ], + "value_specs": [ + "map", + "string" + ] + } + ], + "main_subnet_network_id": "string", + "mtu_size": "number", + "os_project_data": [ + "map", + "string" + ], + "policy_list": [ + "map", + "string" + ], + "resolvers_ip": [ + "list", + "string" + ], + "ssh_sources": [ + "map", + "string" + ], + "ubuntu2204_data_file": "string", + "ubuntu_2204": [ + "map", + "string" + ] + } + ] + }, + "workspace": null + }, + "sensitive_attributes": [], + "identity_schema_version": 0 + } + ] + }, + { + "mode": "managed", + "type": "openstack_blockstorage_volume_v3", + "name": "corso_k8s_data_vol", + "provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]", + "instances": [ + { + "index_key": 0, + "schema_version": 0, + "attributes": { + "attachment": [], + "availability_zone": "nova", + "backup_id": "", + "consistency_group_id": null, + "description": "", + "enable_online_resize": true, + "id": "185376a2-9850-47fa-9b0d-a7c25dc5204e", + "image_id": null, + "metadata": {}, + "name": "corso-k8s-01-data", + "region": "isti_area_pi_1", + "scheduler_hints": [], + "size": 200, + "snapshot_id": "", + "source_replica": null, + "source_vol_id": "", + "timeouts": null, + "volume_retype_policy": "never", + "volume_type": "cephUnencrypted" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=" + }, + { + "index_key": 1, + "schema_version": 0, + "attributes": { + "attachment": [], + "availability_zone": "nova", + "backup_id": "", + "consistency_group_id": null, + "description": "", + "enable_online_resize": true, + "id": "37da8bbb-2145-443d-8c5b-49cd6af71d23", + "image_id": null, + "metadata": {}, + "name": "corso-k8s-02-data", + "region": "isti_area_pi_1", + "scheduler_hints": [], + "size": 200, + "snapshot_id": "", + "source_replica": null, + "source_vol_id": "", + "timeouts": null, + "volume_retype_policy": "never", + "volume_type": "cephUnencrypted" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=" + }, + { + "index_key": 2, + "schema_version": 0, + "attributes": { + "attachment": [], + "availability_zone": "nova", + "backup_id": "", + "consistency_group_id": null, + "description": "", + "enable_online_resize": true, + "id": "ac86335d-d938-4c90-a838-e25dc83ced8b", + "image_id": null, + "metadata": {}, + "name": "corso-k8s-03-data", + "region": "isti_area_pi_1", + "scheduler_hints": [], + "size": 200, + "snapshot_id": "", + "source_replica": null, + "source_vol_id": "", + "timeouts": null, + "volume_retype_policy": "never", + "volume_type": "cephUnencrypted" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=" + }, + { + "index_key": 3, + "schema_version": 0, + "attributes": { + "attachment": [], + "availability_zone": "nova", + "backup_id": "", + "consistency_group_id": null, + "description": "", + "enable_online_resize": true, + "id": "9d5288e2-655a-4290-9496-c36ee5f7c03d", + "image_id": null, + "metadata": {}, + "name": "corso-k8s-04-data", + "region": "isti_area_pi_1", + "scheduler_hints": [], + "size": 200, + "snapshot_id": "", + "source_replica": null, + "source_vol_id": "", + "timeouts": null, + "volume_retype_policy": "never", + "volume_type": "cephUnencrypted" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=" + }, + { + "index_key": 4, + "schema_version": 0, + "attributes": { + "attachment": [], + "availability_zone": "nova", + "backup_id": "", + "consistency_group_id": null, + "description": "", + "enable_online_resize": true, + "id": "e021ac81-9629-4c41-bf30-d3920b8ef44d", + "image_id": null, + "metadata": {}, + "name": "corso-k8s-05-data", + "region": "isti_area_pi_1", + "scheduler_hints": [], + "size": 200, + "snapshot_id": "", + "source_replica": null, + "source_vol_id": "", + "timeouts": null, + "volume_retype_policy": "never", + "volume_type": "cephUnencrypted" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=" + }, + { + "index_key": 5, + "schema_version": 0, + "attributes": { + "attachment": [], + "availability_zone": "nova", + "backup_id": "", + "consistency_group_id": null, + "description": "", + "enable_online_resize": true, + "id": "27d370b3-d4ce-4328-8829-eb742ba7bac9", + "image_id": null, + "metadata": {}, + "name": "corso-k8s-06-data", + "region": "isti_area_pi_1", + "scheduler_hints": [], + "size": 200, + "snapshot_id": "", + "source_replica": null, + "source_vol_id": "", + "timeouts": null, + "volume_retype_policy": "never", + "volume_type": "cephUnencrypted" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=" + }, + { + "index_key": 6, + "schema_version": 0, + "attributes": { + "attachment": [], + "availability_zone": "nova", + "backup_id": "", + "consistency_group_id": null, + "description": "", + "enable_online_resize": true, + "id": "95b72b97-5470-4823-aec9-bc21a7f16abe", + "image_id": null, + "metadata": {}, + "name": "corso-k8s-07-data", + "region": "isti_area_pi_1", + "scheduler_hints": [], + "size": 200, + "snapshot_id": "", + "source_replica": null, + "source_vol_id": "", + "timeouts": null, + "volume_retype_policy": "never", + "volume_type": "cephUnencrypted" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=" + }, + { + "index_key": 7, + "schema_version": 0, + "attributes": { + "attachment": [], + "availability_zone": "nova", + "backup_id": "", + "consistency_group_id": null, + "description": "", + "enable_online_resize": true, + "id": "8ff6fc0a-396a-4b3c-8046-e63ab472f33f", + "image_id": null, + "metadata": {}, + "name": "corso-k8s-08-data", + "region": "isti_area_pi_1", + "scheduler_hints": [], + "size": 200, + "snapshot_id": "", + "source_replica": null, + "source_vol_id": "", + "timeouts": null, + "volume_retype_policy": "never", + "volume_type": "cephUnencrypted" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=" + }, + { + "index_key": 8, + "schema_version": 0, + "attributes": { + "attachment": [], + "availability_zone": "nova", + "backup_id": "", + "consistency_group_id": null, + "description": "", + "enable_online_resize": true, + "id": "629ae213-227b-4074-a729-7ccf2e77e318", + "image_id": null, + "metadata": {}, + "name": "corso-k8s-09-data", + "region": "isti_area_pi_1", + "scheduler_hints": [], + "size": 200, + "snapshot_id": "", + "source_replica": null, + "source_vol_id": "", + "timeouts": null, + "volume_retype_policy": "never", + "volume_type": "cephUnencrypted" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=" + }, + { + "index_key": 9, + "schema_version": 0, + "attributes": { + "attachment": [], + "availability_zone": "nova", + "backup_id": "", + "consistency_group_id": null, + "description": "", + "enable_online_resize": true, + "id": "67bd93cc-0155-49b6-8b27-2f69082e2776", + "image_id": null, + "metadata": {}, + "name": "corso-k8s-10-data", + "region": "isti_area_pi_1", + "scheduler_hints": [], + "size": 200, + "snapshot_id": "", + "source_replica": null, + "source_vol_id": "", + "timeouts": null, + "volume_retype_policy": "never", + "volume_type": "cephUnencrypted" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=" + }, + { + "index_key": 10, + "schema_version": 0, + "attributes": { + "attachment": [], + "availability_zone": "nova", + "backup_id": "", + "consistency_group_id": null, + "description": "", + "enable_online_resize": true, + "id": "fe5eb56b-620c-4de4-b9c4-0226ce800826", + "image_id": null, + "metadata": {}, + "name": "corso-k8s-11-data", + "region": "isti_area_pi_1", + "scheduler_hints": [], + "size": 200, + "snapshot_id": "", + "source_replica": null, + "source_vol_id": "", + "timeouts": null, + "volume_retype_policy": "never", + "volume_type": "cephUnencrypted" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=" + }, + { + "index_key": 11, + "schema_version": 0, + "attributes": { + "attachment": [], + "availability_zone": "nova", + "backup_id": "", + "consistency_group_id": null, + "description": "", + "enable_online_resize": true, + "id": "aaac1fcb-ceeb-415c-adbc-e882863b9087", + "image_id": null, + "metadata": {}, + "name": "corso-k8s-12-data", + "region": "isti_area_pi_1", + "scheduler_hints": [], + "size": 200, + "snapshot_id": "", + "source_replica": null, + "source_vol_id": "", + "timeouts": null, + "volume_retype_policy": "never", + "volume_type": "cephUnencrypted" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=" + }, + { + "index_key": 12, + "schema_version": 0, + "attributes": { + "attachment": [], + "availability_zone": "nova", + "backup_id": "", + "consistency_group_id": null, + "description": "", + "enable_online_resize": true, + "id": "43c25395-a5d8-4e78-a15d-6b4142a58938", + "image_id": null, + "metadata": {}, + "name": "corso-k8s-13-data", + "region": "isti_area_pi_1", + "scheduler_hints": [], + "size": 200, + "snapshot_id": "", + "source_replica": null, + "source_vol_id": "", + "timeouts": null, + "volume_retype_policy": "never", + "volume_type": "cephUnencrypted" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=" + }, + { + "index_key": 13, + "schema_version": 0, + "attributes": { + "attachment": [], + "availability_zone": "nova", + "backup_id": "", + "consistency_group_id": null, + "description": "", + "enable_online_resize": true, + "id": "00ad55d2-76bb-4a22-a8a4-63061d915fff", + "image_id": null, + "metadata": {}, + "name": "corso-k8s-14-data", + "region": "isti_area_pi_1", + "scheduler_hints": [], + "size": 200, + "snapshot_id": "", + "source_replica": null, + "source_vol_id": "", + "timeouts": null, + "volume_retype_policy": "never", + "volume_type": "cephUnencrypted" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=" + } + ] + }, + { + "mode": "managed", + "type": "openstack_compute_instance_v2", + "name": "corso_k8s", + "provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]", + "instances": [ + { + "index_key": 0, + "schema_version": 0, + "attributes": { + "access_ip_v4": "10.16.3.161", + "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": 100, + "volume_type": "" + } + ], + "config_drive": null, + "created": "2026-02-05 21:42:21 +0000 UTC", + "flavor_id": "9", + "flavor_name": "m1.large", + "force_delete": false, + "hypervisor_hostname": "", + "id": "c8975398-c93f-46bf-af43-de63b244334c", + "image_id": "Attempt to boot from volume - no image supplied", + "image_name": null, + "key_pair": "adellam", + "metadata": null, + "name": "corso-k8s-01", + "network": [ + { + "access_network": false, + "fixed_ip_v4": "10.16.3.161", + "fixed_ip_v6": "", + "mac": "fa:16:3e:71:2c:1d", + "name": "infrascience-cloud-main", + "port": "1497d52a-3da7-4584-a179-b690c1809b51", + "uuid": "3fec28ce-1f6f-44e7-8084-9fc67a25d7c4" + } + ], + "network_mode": null, + "personality": [], + "power_state": "active", + "region": "isti_area_pi_1", + "scheduler_hints": [], + "security_groups": [ + "corso-k8s-ssh-from-anywhere", + "default_for_all" + ], + "stop_before_destroy": false, + "tags": null, + "timeouts": null, + "updated": "2026-02-05 21:43:55 +0000 UTC", + "user_data": "164cdf695f3b4a01a2f8b9dc0af2f87629bd89a7", + "vendor_options": [] + }, + "sensitive_attributes": [ + [ + { + "type": "get_attr", + "value": "admin_pass" + } + ] + ], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInVwZGF0ZSI6MTgwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_port_v2.corso_k8s_port", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + }, + { + "index_key": 1, + "schema_version": 0, + "attributes": { + "access_ip_v4": "10.16.4.133", + "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": 100, + "volume_type": "" + } + ], + "config_drive": null, + "created": "2026-02-05 21:41:44 +0000 UTC", + "flavor_id": "9", + "flavor_name": "m1.large", + "force_delete": false, + "hypervisor_hostname": "", + "id": "f129b7df-60e6-4a33-9a2b-4061d3a09100", + "image_id": "Attempt to boot from volume - no image supplied", + "image_name": null, + "key_pair": "adellam", + "metadata": null, + "name": "corso-k8s-02", + "network": [ + { + "access_network": false, + "fixed_ip_v4": "10.16.4.133", + "fixed_ip_v6": "", + "mac": "fa:16:3e:df:27:03", + "name": "infrascience-cloud-main", + "port": "54cfe1ed-e295-471d-9fb7-b73a51d4933c", + "uuid": "3fec28ce-1f6f-44e7-8084-9fc67a25d7c4" + } + ], + "network_mode": null, + "personality": [], + "power_state": "active", + "region": "isti_area_pi_1", + "scheduler_hints": [], + "security_groups": [ + "corso-k8s-ssh-from-anywhere", + "default_for_all" + ], + "stop_before_destroy": false, + "tags": null, + "timeouts": null, + "updated": "2026-02-05 21:43:53 +0000 UTC", + "user_data": "164cdf695f3b4a01a2f8b9dc0af2f87629bd89a7", + "vendor_options": [] + }, + "sensitive_attributes": [ + [ + { + "type": "get_attr", + "value": "admin_pass" + } + ] + ], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInVwZGF0ZSI6MTgwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_port_v2.corso_k8s_port", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + }, + { + "index_key": 2, + "schema_version": 0, + "attributes": { + "access_ip_v4": "10.16.2.202", + "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": 100, + "volume_type": "" + } + ], + "config_drive": null, + "created": "2026-02-05 21:41:43 +0000 UTC", + "flavor_id": "9", + "flavor_name": "m1.large", + "force_delete": false, + "hypervisor_hostname": "", + "id": "b2304dd7-738b-4f06-8ff8-25211cd01c2a", + "image_id": "Attempt to boot from volume - no image supplied", + "image_name": null, + "key_pair": "adellam", + "metadata": null, + "name": "corso-k8s-03", + "network": [ + { + "access_network": false, + "fixed_ip_v4": "10.16.2.202", + "fixed_ip_v6": "", + "mac": "fa:16:3e:dd:eb:87", + "name": "infrascience-cloud-main", + "port": "b816411f-2df8-40b2-901b-5a4cb9cad568", + "uuid": "3fec28ce-1f6f-44e7-8084-9fc67a25d7c4" + } + ], + "network_mode": null, + "personality": [], + "power_state": "active", + "region": "isti_area_pi_1", + "scheduler_hints": [], + "security_groups": [ + "corso-k8s-ssh-from-anywhere", + "default_for_all" + ], + "stop_before_destroy": false, + "tags": null, + "timeouts": null, + "updated": "2026-02-05 21:43:50 +0000 UTC", + "user_data": "164cdf695f3b4a01a2f8b9dc0af2f87629bd89a7", + "vendor_options": [] + }, + "sensitive_attributes": [ + [ + { + "type": "get_attr", + "value": "admin_pass" + } + ] + ], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInVwZGF0ZSI6MTgwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_port_v2.corso_k8s_port", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + }, + { + "index_key": 3, + "schema_version": 0, + "attributes": { + "access_ip_v4": "10.16.1.9", + "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": 100, + "volume_type": "" + } + ], + "config_drive": null, + "created": "2026-02-05 21:41:42 +0000 UTC", + "flavor_id": "9", + "flavor_name": "m1.large", + "force_delete": false, + "hypervisor_hostname": "", + "id": "7c2c14ed-f18b-4395-85b8-98288f8b9d5a", + "image_id": "Attempt to boot from volume - no image supplied", + "image_name": null, + "key_pair": "adellam", + "metadata": null, + "name": "corso-k8s-04", + "network": [ + { + "access_network": false, + "fixed_ip_v4": "10.16.1.9", + "fixed_ip_v6": "", + "mac": "fa:16:3e:a5:78:72", + "name": "infrascience-cloud-main", + "port": "37ce56d3-cb34-4414-96e3-d6f9b79223c5", + "uuid": "3fec28ce-1f6f-44e7-8084-9fc67a25d7c4" + } + ], + "network_mode": null, + "personality": [], + "power_state": "active", + "region": "isti_area_pi_1", + "scheduler_hints": [], + "security_groups": [ + "corso-k8s-ssh-from-anywhere", + "default_for_all" + ], + "stop_before_destroy": false, + "tags": null, + "timeouts": null, + "updated": "2026-02-05 21:43:55 +0000 UTC", + "user_data": "164cdf695f3b4a01a2f8b9dc0af2f87629bd89a7", + "vendor_options": [] + }, + "sensitive_attributes": [ + [ + { + "type": "get_attr", + "value": "admin_pass" + } + ] + ], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInVwZGF0ZSI6MTgwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_port_v2.corso_k8s_port", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + }, + { + "index_key": 4, + "schema_version": 0, + "attributes": { + "access_ip_v4": "10.16.4.153", + "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": 100, + "volume_type": "" + } + ], + "config_drive": null, + "created": "2026-02-05 21:43:59 +0000 UTC", + "flavor_id": "9", + "flavor_name": "m1.large", + "force_delete": false, + "hypervisor_hostname": "", + "id": "95101c77-73b2-4fc3-82de-a5cf35229eb9", + "image_id": "Attempt to boot from volume - no image supplied", + "image_name": null, + "key_pair": "adellam", + "metadata": null, + "name": "corso-k8s-05", + "network": [ + { + "access_network": false, + "fixed_ip_v4": "10.16.4.153", + "fixed_ip_v6": "", + "mac": "fa:16:3e:44:36:05", + "name": "infrascience-cloud-main", + "port": "57b476f0-1236-43b1-9085-5be9327930be", + "uuid": "3fec28ce-1f6f-44e7-8084-9fc67a25d7c4" + } + ], + "network_mode": null, + "personality": [], + "power_state": "active", + "region": "isti_area_pi_1", + "scheduler_hints": [], + "security_groups": [ + "corso-k8s-ssh-from-anywhere", + "default_for_all" + ], + "stop_before_destroy": false, + "tags": null, + "timeouts": null, + "updated": "2026-02-05 21:45:14 +0000 UTC", + "user_data": "164cdf695f3b4a01a2f8b9dc0af2f87629bd89a7", + "vendor_options": [] + }, + "sensitive_attributes": [ + [ + { + "type": "get_attr", + "value": "admin_pass" + } + ] + ], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInVwZGF0ZSI6MTgwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_port_v2.corso_k8s_port", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + }, + { + "index_key": 5, + "schema_version": 0, + "attributes": { + "access_ip_v4": "10.16.2.163", + "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": 100, + "volume_type": "" + } + ], + "config_drive": null, + "created": "2026-02-05 21:41:41 +0000 UTC", + "flavor_id": "9", + "flavor_name": "m1.large", + "force_delete": false, + "hypervisor_hostname": "", + "id": "4e95339b-a836-4c7d-bd85-1da53b400b66", + "image_id": "Attempt to boot from volume - no image supplied", + "image_name": null, + "key_pair": "adellam", + "metadata": null, + "name": "corso-k8s-06", + "network": [ + { + "access_network": false, + "fixed_ip_v4": "10.16.2.163", + "fixed_ip_v6": "", + "mac": "fa:16:3e:32:00:17", + "name": "infrascience-cloud-main", + "port": "ad374704-546d-450a-b097-175947a9d926", + "uuid": "3fec28ce-1f6f-44e7-8084-9fc67a25d7c4" + } + ], + "network_mode": null, + "personality": [], + "power_state": "active", + "region": "isti_area_pi_1", + "scheduler_hints": [], + "security_groups": [ + "corso-k8s-ssh-from-anywhere", + "default_for_all" + ], + "stop_before_destroy": false, + "tags": null, + "timeouts": null, + "updated": "2026-02-05 21:43:48 +0000 UTC", + "user_data": "164cdf695f3b4a01a2f8b9dc0af2f87629bd89a7", + "vendor_options": [] + }, + "sensitive_attributes": [ + [ + { + "type": "get_attr", + "value": "admin_pass" + } + ] + ], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInVwZGF0ZSI6MTgwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_port_v2.corso_k8s_port", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + }, + { + "index_key": 6, + "schema_version": 0, + "attributes": { + "access_ip_v4": "10.16.2.18", + "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": 100, + "volume_type": "" + } + ], + "config_drive": null, + "created": "2026-02-05 21:41:44 +0000 UTC", + "flavor_id": "9", + "flavor_name": "m1.large", + "force_delete": false, + "hypervisor_hostname": "", + "id": "6eb1a46d-da2f-4fa0-aca4-854ce27d589d", + "image_id": "Attempt to boot from volume - no image supplied", + "image_name": null, + "key_pair": "adellam", + "metadata": null, + "name": "corso-k8s-07", + "network": [ + { + "access_network": false, + "fixed_ip_v4": "10.16.2.18", + "fixed_ip_v6": "", + "mac": "fa:16:3e:b9:0d:e9", + "name": "infrascience-cloud-main", + "port": "6279a726-57db-4f9f-9bdc-81e97166574b", + "uuid": "3fec28ce-1f6f-44e7-8084-9fc67a25d7c4" + } + ], + "network_mode": null, + "personality": [], + "power_state": "active", + "region": "isti_area_pi_1", + "scheduler_hints": [], + "security_groups": [ + "corso-k8s-ssh-from-anywhere", + "default_for_all" + ], + "stop_before_destroy": false, + "tags": null, + "timeouts": null, + "updated": "2026-02-05 21:43:53 +0000 UTC", + "user_data": "164cdf695f3b4a01a2f8b9dc0af2f87629bd89a7", + "vendor_options": [] + }, + "sensitive_attributes": [ + [ + { + "type": "get_attr", + "value": "admin_pass" + } + ] + ], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInVwZGF0ZSI6MTgwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_port_v2.corso_k8s_port", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + }, + { + "index_key": 7, + "schema_version": 0, + "attributes": { + "access_ip_v4": "10.16.3.131", + "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": 100, + "volume_type": "" + } + ], + "config_drive": null, + "created": "2026-02-05 21:44:00 +0000 UTC", + "flavor_id": "9", + "flavor_name": "m1.large", + "force_delete": false, + "hypervisor_hostname": "", + "id": "7b8aabc4-8731-4376-937e-0db4369f9adb", + "image_id": "Attempt to boot from volume - no image supplied", + "image_name": null, + "key_pair": "adellam", + "metadata": null, + "name": "corso-k8s-08", + "network": [ + { + "access_network": false, + "fixed_ip_v4": "10.16.3.131", + "fixed_ip_v6": "", + "mac": "fa:16:3e:55:9e:f1", + "name": "infrascience-cloud-main", + "port": "9a4c68f6-4e8d-4176-8096-68e62eec631c", + "uuid": "3fec28ce-1f6f-44e7-8084-9fc67a25d7c4" + } + ], + "network_mode": null, + "personality": [], + "power_state": "active", + "region": "isti_area_pi_1", + "scheduler_hints": [], + "security_groups": [ + "corso-k8s-ssh-from-anywhere", + "default_for_all" + ], + "stop_before_destroy": false, + "tags": null, + "timeouts": null, + "updated": "2026-02-05 21:45:03 +0000 UTC", + "user_data": "164cdf695f3b4a01a2f8b9dc0af2f87629bd89a7", + "vendor_options": [] + }, + "sensitive_attributes": [ + [ + { + "type": "get_attr", + "value": "admin_pass" + } + ] + ], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInVwZGF0ZSI6MTgwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_port_v2.corso_k8s_port", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + }, + { + "index_key": 8, + "schema_version": 0, + "attributes": { + "access_ip_v4": "10.16.3.113", + "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": 100, + "volume_type": "" + } + ], + "config_drive": null, + "created": "2026-02-05 21:42:21 +0000 UTC", + "flavor_id": "9", + "flavor_name": "m1.large", + "force_delete": false, + "hypervisor_hostname": "", + "id": "74926fb1-5a32-4f74-a089-baf78ade5669", + "image_id": "Attempt to boot from volume - no image supplied", + "image_name": null, + "key_pair": "adellam", + "metadata": null, + "name": "corso-k8s-09", + "network": [ + { + "access_network": false, + "fixed_ip_v4": "10.16.3.113", + "fixed_ip_v6": "", + "mac": "fa:16:3e:ef:2c:cc", + "name": "infrascience-cloud-main", + "port": "ea7e2b83-12eb-438a-a822-73798243cdde", + "uuid": "3fec28ce-1f6f-44e7-8084-9fc67a25d7c4" + } + ], + "network_mode": null, + "personality": [], + "power_state": "active", + "region": "isti_area_pi_1", + "scheduler_hints": [], + "security_groups": [ + "corso-k8s-ssh-from-anywhere", + "default_for_all" + ], + "stop_before_destroy": false, + "tags": null, + "timeouts": null, + "updated": "2026-02-05 21:44:07 +0000 UTC", + "user_data": "164cdf695f3b4a01a2f8b9dc0af2f87629bd89a7", + "vendor_options": [] + }, + "sensitive_attributes": [ + [ + { + "type": "get_attr", + "value": "admin_pass" + } + ] + ], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInVwZGF0ZSI6MTgwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_port_v2.corso_k8s_port", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + }, + { + "index_key": 9, + "schema_version": 0, + "attributes": { + "access_ip_v4": "10.16.3.45", + "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": 100, + "volume_type": "" + } + ], + "config_drive": null, + "created": "2026-02-05 21:43:59 +0000 UTC", + "flavor_id": "9", + "flavor_name": "m1.large", + "force_delete": false, + "hypervisor_hostname": "", + "id": "e9615030-7ef7-4d6d-9802-22e8dc12a4cc", + "image_id": "Attempt to boot from volume - no image supplied", + "image_name": null, + "key_pair": "adellam", + "metadata": null, + "name": "corso-k8s-10", + "network": [ + { + "access_network": false, + "fixed_ip_v4": "10.16.3.45", + "fixed_ip_v6": "", + "mac": "fa:16:3e:c1:33:96", + "name": "infrascience-cloud-main", + "port": "170d90a3-015e-4d52-9f4e-da4414c63f9c", + "uuid": "3fec28ce-1f6f-44e7-8084-9fc67a25d7c4" + } + ], + "network_mode": null, + "personality": [], + "power_state": "active", + "region": "isti_area_pi_1", + "scheduler_hints": [], + "security_groups": [ + "corso-k8s-ssh-from-anywhere", + "default_for_all" + ], + "stop_before_destroy": false, + "tags": null, + "timeouts": null, + "updated": "2026-02-05 21:45:02 +0000 UTC", + "user_data": "164cdf695f3b4a01a2f8b9dc0af2f87629bd89a7", + "vendor_options": [] + }, + "sensitive_attributes": [ + [ + { + "type": "get_attr", + "value": "admin_pass" + } + ] + ], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInVwZGF0ZSI6MTgwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_port_v2.corso_k8s_port", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + }, + { + "index_key": 10, + "schema_version": 0, + "attributes": { + "access_ip_v4": "10.16.1.196", + "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": 100, + "volume_type": "" + } + ], + "config_drive": null, + "created": "2026-02-05 21:42:20 +0000 UTC", + "flavor_id": "9", + "flavor_name": "m1.large", + "force_delete": false, + "hypervisor_hostname": "", + "id": "2adf83a1-a104-4404-88d6-0eae2bb6735f", + "image_id": "Attempt to boot from volume - no image supplied", + "image_name": null, + "key_pair": "adellam", + "metadata": null, + "name": "corso-k8s-11", + "network": [ + { + "access_network": false, + "fixed_ip_v4": "10.16.1.196", + "fixed_ip_v6": "", + "mac": "fa:16:3e:2c:52:c7", + "name": "infrascience-cloud-main", + "port": "85bf6fca-db1f-408d-ba03-d0b8019eca37", + "uuid": "3fec28ce-1f6f-44e7-8084-9fc67a25d7c4" + } + ], + "network_mode": null, + "personality": [], + "power_state": "active", + "region": "isti_area_pi_1", + "scheduler_hints": [], + "security_groups": [ + "corso-k8s-ssh-from-anywhere", + "default_for_all" + ], + "stop_before_destroy": false, + "tags": null, + "timeouts": null, + "updated": "2026-02-05 21:44:13 +0000 UTC", + "user_data": "164cdf695f3b4a01a2f8b9dc0af2f87629bd89a7", + "vendor_options": [] + }, + "sensitive_attributes": [ + [ + { + "type": "get_attr", + "value": "admin_pass" + } + ] + ], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInVwZGF0ZSI6MTgwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_port_v2.corso_k8s_port", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + }, + { + "index_key": 11, + "schema_version": 0, + "attributes": { + "access_ip_v4": "10.16.2.187", + "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": 100, + "volume_type": "" + } + ], + "config_drive": null, + "created": "2026-02-05 21:41:45 +0000 UTC", + "flavor_id": "9", + "flavor_name": "m1.large", + "force_delete": false, + "hypervisor_hostname": "", + "id": "f567ad7f-a911-4bb6-90db-d8b7ca1063c1", + "image_id": "Attempt to boot from volume - no image supplied", + "image_name": null, + "key_pair": "adellam", + "metadata": null, + "name": "corso-k8s-12", + "network": [ + { + "access_network": false, + "fixed_ip_v4": "10.16.2.187", + "fixed_ip_v6": "", + "mac": "fa:16:3e:99:30:97", + "name": "infrascience-cloud-main", + "port": "a6f0bd20-80a2-4f11-98cd-645fef0f403a", + "uuid": "3fec28ce-1f6f-44e7-8084-9fc67a25d7c4" + } + ], + "network_mode": null, + "personality": [], + "power_state": "active", + "region": "isti_area_pi_1", + "scheduler_hints": [], + "security_groups": [ + "corso-k8s-ssh-from-anywhere", + "default_for_all" + ], + "stop_before_destroy": false, + "tags": null, + "timeouts": null, + "updated": "2026-02-05 21:43:55 +0000 UTC", + "user_data": "164cdf695f3b4a01a2f8b9dc0af2f87629bd89a7", + "vendor_options": [] + }, + "sensitive_attributes": [ + [ + { + "type": "get_attr", + "value": "admin_pass" + } + ] + ], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInVwZGF0ZSI6MTgwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_port_v2.corso_k8s_port", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + }, + { + "index_key": 12, + "schema_version": 0, + "attributes": { + "access_ip_v4": "10.16.4.27", + "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": 100, + "volume_type": "" + } + ], + "config_drive": null, + "created": "2026-02-05 21:43:57 +0000 UTC", + "flavor_id": "9", + "flavor_name": "m1.large", + "force_delete": false, + "hypervisor_hostname": "", + "id": "b9575bf8-5988-40d2-a9e5-6027f937adb4", + "image_id": "Attempt to boot from volume - no image supplied", + "image_name": null, + "key_pair": "adellam", + "metadata": null, + "name": "corso-k8s-13", + "network": [ + { + "access_network": false, + "fixed_ip_v4": "10.16.4.27", + "fixed_ip_v6": "", + "mac": "fa:16:3e:89:38:14", + "name": "infrascience-cloud-main", + "port": "747ae714-8ce9-470f-a2f6-c25cc64acffe", + "uuid": "3fec28ce-1f6f-44e7-8084-9fc67a25d7c4" + } + ], + "network_mode": null, + "personality": [], + "power_state": "active", + "region": "isti_area_pi_1", + "scheduler_hints": [], + "security_groups": [ + "corso-k8s-ssh-from-anywhere", + "default_for_all" + ], + "stop_before_destroy": false, + "tags": null, + "timeouts": null, + "updated": "2026-02-05 21:44:56 +0000 UTC", + "user_data": "164cdf695f3b4a01a2f8b9dc0af2f87629bd89a7", + "vendor_options": [] + }, + "sensitive_attributes": [ + [ + { + "type": "get_attr", + "value": "admin_pass" + } + ] + ], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInVwZGF0ZSI6MTgwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_port_v2.corso_k8s_port", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + }, + { + "index_key": 13, + "schema_version": 0, + "attributes": { + "access_ip_v4": "10.16.1.100", + "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": 100, + "volume_type": "" + } + ], + "config_drive": null, + "created": "2026-02-05 21:42:19 +0000 UTC", + "flavor_id": "9", + "flavor_name": "m1.large", + "force_delete": false, + "hypervisor_hostname": "", + "id": "062875d5-4498-48ea-93fa-75c2483baab3", + "image_id": "Attempt to boot from volume - no image supplied", + "image_name": null, + "key_pair": "adellam", + "metadata": null, + "name": "corso-k8s-14", + "network": [ + { + "access_network": false, + "fixed_ip_v4": "10.16.1.100", + "fixed_ip_v6": "", + "mac": "fa:16:3e:e6:43:f2", + "name": "infrascience-cloud-main", + "port": "604d36aa-1bd2-4a0a-8b22-1e8d73b194e9", + "uuid": "3fec28ce-1f6f-44e7-8084-9fc67a25d7c4" + } + ], + "network_mode": null, + "personality": [], + "power_state": "active", + "region": "isti_area_pi_1", + "scheduler_hints": [], + "security_groups": [ + "corso-k8s-ssh-from-anywhere", + "default_for_all" + ], + "stop_before_destroy": false, + "tags": null, + "timeouts": null, + "updated": "2026-02-05 21:43:55 +0000 UTC", + "user_data": "164cdf695f3b4a01a2f8b9dc0af2f87629bd89a7", + "vendor_options": [] + }, + "sensitive_attributes": [ + [ + { + "type": "get_attr", + "value": "admin_pass" + } + ] + ], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInVwZGF0ZSI6MTgwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_port_v2.corso_k8s_port", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + } + ] + }, + { + "mode": "managed", + "type": "openstack_compute_volume_attach_v2", + "name": "corso_k8s_data_vol_attach", + "provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]", + "instances": [ + { + "index_key": 0, + "schema_version": 0, + "attributes": { + "device": "/dev/vdb", + "id": "c8975398-c93f-46bf-af43-de63b244334c/185376a2-9850-47fa-9b0d-a7c25dc5204e", + "instance_id": "c8975398-c93f-46bf-af43-de63b244334c", + "multiattach": null, + "region": "isti_area_pi_1", + "tag": null, + "timeouts": null, + "vendor_options": [], + "volume_id": "185376a2-9850-47fa-9b0d-a7c25dc5204e" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_blockstorage_volume_v3.corso_k8s_data_vol", + "openstack_compute_instance_v2.corso_k8s", + "openstack_networking_port_v2.corso_k8s_port", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + }, + { + "index_key": 1, + "schema_version": 0, + "attributes": { + "device": "/dev/vdb", + "id": "f129b7df-60e6-4a33-9a2b-4061d3a09100/37da8bbb-2145-443d-8c5b-49cd6af71d23", + "instance_id": "f129b7df-60e6-4a33-9a2b-4061d3a09100", + "multiattach": null, + "region": "isti_area_pi_1", + "tag": null, + "timeouts": null, + "vendor_options": [], + "volume_id": "37da8bbb-2145-443d-8c5b-49cd6af71d23" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_blockstorage_volume_v3.corso_k8s_data_vol", + "openstack_compute_instance_v2.corso_k8s", + "openstack_networking_port_v2.corso_k8s_port", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + }, + { + "index_key": 2, + "schema_version": 0, + "attributes": { + "device": "/dev/vdb", + "id": "b2304dd7-738b-4f06-8ff8-25211cd01c2a/ac86335d-d938-4c90-a838-e25dc83ced8b", + "instance_id": "b2304dd7-738b-4f06-8ff8-25211cd01c2a", + "multiattach": null, + "region": "isti_area_pi_1", + "tag": null, + "timeouts": null, + "vendor_options": [], + "volume_id": "ac86335d-d938-4c90-a838-e25dc83ced8b" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_blockstorage_volume_v3.corso_k8s_data_vol", + "openstack_compute_instance_v2.corso_k8s", + "openstack_networking_port_v2.corso_k8s_port", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + }, + { + "index_key": 3, + "schema_version": 0, + "attributes": { + "device": "/dev/vdb", + "id": "7c2c14ed-f18b-4395-85b8-98288f8b9d5a/9d5288e2-655a-4290-9496-c36ee5f7c03d", + "instance_id": "7c2c14ed-f18b-4395-85b8-98288f8b9d5a", + "multiattach": null, + "region": "isti_area_pi_1", + "tag": null, + "timeouts": null, + "vendor_options": [], + "volume_id": "9d5288e2-655a-4290-9496-c36ee5f7c03d" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_blockstorage_volume_v3.corso_k8s_data_vol", + "openstack_compute_instance_v2.corso_k8s", + "openstack_networking_port_v2.corso_k8s_port", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + }, + { + "index_key": 4, + "schema_version": 0, + "attributes": { + "device": "/dev/vdb", + "id": "95101c77-73b2-4fc3-82de-a5cf35229eb9/e021ac81-9629-4c41-bf30-d3920b8ef44d", + "instance_id": "95101c77-73b2-4fc3-82de-a5cf35229eb9", + "multiattach": null, + "region": "isti_area_pi_1", + "tag": null, + "timeouts": null, + "vendor_options": [], + "volume_id": "e021ac81-9629-4c41-bf30-d3920b8ef44d" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_blockstorage_volume_v3.corso_k8s_data_vol", + "openstack_compute_instance_v2.corso_k8s", + "openstack_networking_port_v2.corso_k8s_port", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + }, + { + "index_key": 5, + "schema_version": 0, + "attributes": { + "device": "/dev/vdb", + "id": "4e95339b-a836-4c7d-bd85-1da53b400b66/27d370b3-d4ce-4328-8829-eb742ba7bac9", + "instance_id": "4e95339b-a836-4c7d-bd85-1da53b400b66", + "multiattach": null, + "region": "isti_area_pi_1", + "tag": null, + "timeouts": null, + "vendor_options": [], + "volume_id": "27d370b3-d4ce-4328-8829-eb742ba7bac9" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_blockstorage_volume_v3.corso_k8s_data_vol", + "openstack_compute_instance_v2.corso_k8s", + "openstack_networking_port_v2.corso_k8s_port", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + }, + { + "index_key": 6, + "schema_version": 0, + "attributes": { + "device": "/dev/vdb", + "id": "6eb1a46d-da2f-4fa0-aca4-854ce27d589d/95b72b97-5470-4823-aec9-bc21a7f16abe", + "instance_id": "6eb1a46d-da2f-4fa0-aca4-854ce27d589d", + "multiattach": null, + "region": "isti_area_pi_1", + "tag": null, + "timeouts": null, + "vendor_options": [], + "volume_id": "95b72b97-5470-4823-aec9-bc21a7f16abe" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_blockstorage_volume_v3.corso_k8s_data_vol", + "openstack_compute_instance_v2.corso_k8s", + "openstack_networking_port_v2.corso_k8s_port", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + }, + { + "index_key": 7, + "schema_version": 0, + "attributes": { + "device": "/dev/vdb", + "id": "7b8aabc4-8731-4376-937e-0db4369f9adb/8ff6fc0a-396a-4b3c-8046-e63ab472f33f", + "instance_id": "7b8aabc4-8731-4376-937e-0db4369f9adb", + "multiattach": null, + "region": "isti_area_pi_1", + "tag": null, + "timeouts": null, + "vendor_options": [], + "volume_id": "8ff6fc0a-396a-4b3c-8046-e63ab472f33f" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_blockstorage_volume_v3.corso_k8s_data_vol", + "openstack_compute_instance_v2.corso_k8s", + "openstack_networking_port_v2.corso_k8s_port", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + }, + { + "index_key": 8, + "schema_version": 0, + "attributes": { + "device": "/dev/vdb", + "id": "74926fb1-5a32-4f74-a089-baf78ade5669/629ae213-227b-4074-a729-7ccf2e77e318", + "instance_id": "74926fb1-5a32-4f74-a089-baf78ade5669", + "multiattach": null, + "region": "isti_area_pi_1", + "tag": null, + "timeouts": null, + "vendor_options": [], + "volume_id": "629ae213-227b-4074-a729-7ccf2e77e318" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_blockstorage_volume_v3.corso_k8s_data_vol", + "openstack_compute_instance_v2.corso_k8s", + "openstack_networking_port_v2.corso_k8s_port", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + }, + { + "index_key": 9, + "schema_version": 0, + "attributes": { + "device": "/dev/vdb", + "id": "e9615030-7ef7-4d6d-9802-22e8dc12a4cc/67bd93cc-0155-49b6-8b27-2f69082e2776", + "instance_id": "e9615030-7ef7-4d6d-9802-22e8dc12a4cc", + "multiattach": null, + "region": "isti_area_pi_1", + "tag": null, + "timeouts": null, + "vendor_options": [], + "volume_id": "67bd93cc-0155-49b6-8b27-2f69082e2776" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_blockstorage_volume_v3.corso_k8s_data_vol", + "openstack_compute_instance_v2.corso_k8s", + "openstack_networking_port_v2.corso_k8s_port", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + }, + { + "index_key": 10, + "schema_version": 0, + "attributes": { + "device": "/dev/vdb", + "id": "2adf83a1-a104-4404-88d6-0eae2bb6735f/fe5eb56b-620c-4de4-b9c4-0226ce800826", + "instance_id": "2adf83a1-a104-4404-88d6-0eae2bb6735f", + "multiattach": null, + "region": "isti_area_pi_1", + "tag": null, + "timeouts": null, + "vendor_options": [], + "volume_id": "fe5eb56b-620c-4de4-b9c4-0226ce800826" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_blockstorage_volume_v3.corso_k8s_data_vol", + "openstack_compute_instance_v2.corso_k8s", + "openstack_networking_port_v2.corso_k8s_port", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + }, + { + "index_key": 11, + "schema_version": 0, + "attributes": { + "device": "/dev/vdb", + "id": "f567ad7f-a911-4bb6-90db-d8b7ca1063c1/aaac1fcb-ceeb-415c-adbc-e882863b9087", + "instance_id": "f567ad7f-a911-4bb6-90db-d8b7ca1063c1", + "multiattach": null, + "region": "isti_area_pi_1", + "tag": null, + "timeouts": null, + "vendor_options": [], + "volume_id": "aaac1fcb-ceeb-415c-adbc-e882863b9087" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_blockstorage_volume_v3.corso_k8s_data_vol", + "openstack_compute_instance_v2.corso_k8s", + "openstack_networking_port_v2.corso_k8s_port", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + }, + { + "index_key": 12, + "schema_version": 0, + "attributes": { + "device": "/dev/vdb", + "id": "b9575bf8-5988-40d2-a9e5-6027f937adb4/43c25395-a5d8-4e78-a15d-6b4142a58938", + "instance_id": "b9575bf8-5988-40d2-a9e5-6027f937adb4", + "multiattach": null, + "region": "isti_area_pi_1", + "tag": null, + "timeouts": null, + "vendor_options": [], + "volume_id": "43c25395-a5d8-4e78-a15d-6b4142a58938" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_blockstorage_volume_v3.corso_k8s_data_vol", + "openstack_compute_instance_v2.corso_k8s", + "openstack_networking_port_v2.corso_k8s_port", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + }, + { + "index_key": 13, + "schema_version": 0, + "attributes": { + "device": "/dev/vdb", + "id": "062875d5-4498-48ea-93fa-75c2483baab3/00ad55d2-76bb-4a22-a8a4-63061d915fff", + "instance_id": "062875d5-4498-48ea-93fa-75c2483baab3", + "multiattach": null, + "region": "isti_area_pi_1", + "tag": null, + "timeouts": null, + "vendor_options": [], + "volume_id": "00ad55d2-76bb-4a22-a8a4-63061d915fff" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_blockstorage_volume_v3.corso_k8s_data_vol", + "openstack_compute_instance_v2.corso_k8s", + "openstack_networking_port_v2.corso_k8s_port", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + } + ] + }, + { + "mode": "managed", + "type": "openstack_dns_recordset_v2", + "name": "corso_k8s_dns", + "provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]", + "instances": [ + { + "index_key": 0, + "schema_version": 0, + "attributes": { + "description": "Public IP of corso-k8s-01", + "disable_status_check": false, + "id": "d10e7c2f-e856-4b8e-b5a1-33afa0f87ca8/8778c417-db76-4904-88d9-6fda74f5e943", + "name": "corso-k8s-01.infrascience.cloud.isti.cnr.it.", + "project_id": "3511cd5293dc435ea421aeb0edcfab43", + "records": [ + "146.48.30.2" + ], + "region": "isti_area_pi_1", + "timeouts": null, + "ttl": 8600, + "type": "A", + "value_specs": null, + "zone_id": "d10e7c2f-e856-4b8e-b5a1-33afa0f87ca8" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_floatingip_v2.corso_k8s_ip" + ] + }, + { + "index_key": 1, + "schema_version": 0, + "attributes": { + "description": "Public IP of corso-k8s-02", + "disable_status_check": false, + "id": "d10e7c2f-e856-4b8e-b5a1-33afa0f87ca8/3a6a7b57-0a44-4f05-9fd7-0a45d3e75c9d", + "name": "corso-k8s-02.infrascience.cloud.isti.cnr.it.", + "project_id": "3511cd5293dc435ea421aeb0edcfab43", + "records": [ + "146.48.30.250" + ], + "region": "isti_area_pi_1", + "timeouts": null, + "ttl": 8600, + "type": "A", + "value_specs": null, + "zone_id": "d10e7c2f-e856-4b8e-b5a1-33afa0f87ca8" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_floatingip_v2.corso_k8s_ip" + ] + }, + { + "index_key": 2, + "schema_version": 0, + "attributes": { + "description": "Public IP of corso-k8s-03", + "disable_status_check": false, + "id": "d10e7c2f-e856-4b8e-b5a1-33afa0f87ca8/20944c1e-2eb4-4002-9fea-8c57991da1af", + "name": "corso-k8s-03.infrascience.cloud.isti.cnr.it.", + "project_id": "3511cd5293dc435ea421aeb0edcfab43", + "records": [ + "146.48.29.226" + ], + "region": "isti_area_pi_1", + "timeouts": null, + "ttl": 8600, + "type": "A", + "value_specs": null, + "zone_id": "d10e7c2f-e856-4b8e-b5a1-33afa0f87ca8" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_floatingip_v2.corso_k8s_ip" + ] + }, + { + "index_key": 3, + "schema_version": 0, + "attributes": { + "description": "Public IP of corso-k8s-04", + "disable_status_check": false, + "id": "d10e7c2f-e856-4b8e-b5a1-33afa0f87ca8/7fcc061e-a37f-43a2-ae92-ec4727ec9e60", + "name": "corso-k8s-04.infrascience.cloud.isti.cnr.it.", + "project_id": "3511cd5293dc435ea421aeb0edcfab43", + "records": [ + "146.48.31.133" + ], + "region": "isti_area_pi_1", + "timeouts": null, + "ttl": 8600, + "type": "A", + "value_specs": null, + "zone_id": "d10e7c2f-e856-4b8e-b5a1-33afa0f87ca8" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_floatingip_v2.corso_k8s_ip" + ] + }, + { + "index_key": 4, + "schema_version": 0, + "attributes": { + "description": "Public IP of corso-k8s-05", + "disable_status_check": false, + "id": "d10e7c2f-e856-4b8e-b5a1-33afa0f87ca8/ed5067da-2514-4d9d-97b5-5724d273ddf5", + "name": "corso-k8s-05.infrascience.cloud.isti.cnr.it.", + "project_id": "3511cd5293dc435ea421aeb0edcfab43", + "records": [ + "146.48.30.52" + ], + "region": "isti_area_pi_1", + "timeouts": null, + "ttl": 8600, + "type": "A", + "value_specs": null, + "zone_id": "d10e7c2f-e856-4b8e-b5a1-33afa0f87ca8" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_floatingip_v2.corso_k8s_ip" + ] + }, + { + "index_key": 5, + "schema_version": 0, + "attributes": { + "description": "Public IP of corso-k8s-06", + "disable_status_check": false, + "id": "d10e7c2f-e856-4b8e-b5a1-33afa0f87ca8/981a3581-5e98-417a-badc-e2be20626896", + "name": "corso-k8s-06.infrascience.cloud.isti.cnr.it.", + "project_id": "3511cd5293dc435ea421aeb0edcfab43", + "records": [ + "146.48.29.237" + ], + "region": "isti_area_pi_1", + "timeouts": null, + "ttl": 8600, + "type": "A", + "value_specs": null, + "zone_id": "d10e7c2f-e856-4b8e-b5a1-33afa0f87ca8" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_floatingip_v2.corso_k8s_ip" + ] + }, + { + "index_key": 6, + "schema_version": 0, + "attributes": { + "description": "Public IP of corso-k8s-07", + "disable_status_check": false, + "id": "d10e7c2f-e856-4b8e-b5a1-33afa0f87ca8/64072e73-8079-41e2-a17c-53b8f7f9cfbb", + "name": "corso-k8s-07.infrascience.cloud.isti.cnr.it.", + "project_id": "3511cd5293dc435ea421aeb0edcfab43", + "records": [ + "146.48.31.77" + ], + "region": "isti_area_pi_1", + "timeouts": null, + "ttl": 8600, + "type": "A", + "value_specs": null, + "zone_id": "d10e7c2f-e856-4b8e-b5a1-33afa0f87ca8" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_floatingip_v2.corso_k8s_ip" + ] + }, + { + "index_key": 7, + "schema_version": 0, + "attributes": { + "description": "Public IP of corso-k8s-08", + "disable_status_check": false, + "id": "d10e7c2f-e856-4b8e-b5a1-33afa0f87ca8/f3d91dba-5a3f-4f75-9b98-1239d03759be", + "name": "corso-k8s-08.infrascience.cloud.isti.cnr.it.", + "project_id": "3511cd5293dc435ea421aeb0edcfab43", + "records": [ + "146.48.30.209" + ], + "region": "isti_area_pi_1", + "timeouts": null, + "ttl": 8600, + "type": "A", + "value_specs": null, + "zone_id": "d10e7c2f-e856-4b8e-b5a1-33afa0f87ca8" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_floatingip_v2.corso_k8s_ip" + ] + }, + { + "index_key": 8, + "schema_version": 0, + "attributes": { + "description": "Public IP of corso-k8s-09", + "disable_status_check": false, + "id": "d10e7c2f-e856-4b8e-b5a1-33afa0f87ca8/b8c5a9b0-d57a-4377-a088-6aaf4d4c2305", + "name": "corso-k8s-09.infrascience.cloud.isti.cnr.it.", + "project_id": "3511cd5293dc435ea421aeb0edcfab43", + "records": [ + "146.48.30.22" + ], + "region": "isti_area_pi_1", + "timeouts": null, + "ttl": 8600, + "type": "A", + "value_specs": null, + "zone_id": "d10e7c2f-e856-4b8e-b5a1-33afa0f87ca8" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_floatingip_v2.corso_k8s_ip" + ] + }, + { + "index_key": 9, + "schema_version": 0, + "attributes": { + "description": "Public IP of corso-k8s-10", + "disable_status_check": false, + "id": "d10e7c2f-e856-4b8e-b5a1-33afa0f87ca8/56f32864-13ef-47a4-b349-4fcac3be72d2", + "name": "corso-k8s-10.infrascience.cloud.isti.cnr.it.", + "project_id": "3511cd5293dc435ea421aeb0edcfab43", + "records": [ + "146.48.30.31" + ], + "region": "isti_area_pi_1", + "timeouts": null, + "ttl": 8600, + "type": "A", + "value_specs": null, + "zone_id": "d10e7c2f-e856-4b8e-b5a1-33afa0f87ca8" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_floatingip_v2.corso_k8s_ip" + ] + }, + { + "index_key": 10, + "schema_version": 0, + "attributes": { + "description": "Public IP of corso-k8s-11", + "disable_status_check": false, + "id": "d10e7c2f-e856-4b8e-b5a1-33afa0f87ca8/e0e2cbf8-6188-4241-99b5-724f49dfb817", + "name": "corso-k8s-11.infrascience.cloud.isti.cnr.it.", + "project_id": "3511cd5293dc435ea421aeb0edcfab43", + "records": [ + "146.48.30.5" + ], + "region": "isti_area_pi_1", + "timeouts": null, + "ttl": 8600, + "type": "A", + "value_specs": null, + "zone_id": "d10e7c2f-e856-4b8e-b5a1-33afa0f87ca8" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_floatingip_v2.corso_k8s_ip" + ] + }, + { + "index_key": 11, + "schema_version": 0, + "attributes": { + "description": "Public IP of corso-k8s-12", + "disable_status_check": false, + "id": "d10e7c2f-e856-4b8e-b5a1-33afa0f87ca8/db06add4-42d5-444d-8d26-c5d50886dd1b", + "name": "corso-k8s-12.infrascience.cloud.isti.cnr.it.", + "project_id": "3511cd5293dc435ea421aeb0edcfab43", + "records": [ + "146.48.30.204" + ], + "region": "isti_area_pi_1", + "timeouts": null, + "ttl": 8600, + "type": "A", + "value_specs": null, + "zone_id": "d10e7c2f-e856-4b8e-b5a1-33afa0f87ca8" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_floatingip_v2.corso_k8s_ip" + ] + }, + { + "index_key": 12, + "schema_version": 0, + "attributes": { + "description": "Public IP of corso-k8s-13", + "disable_status_check": false, + "id": "d10e7c2f-e856-4b8e-b5a1-33afa0f87ca8/9f0b74bd-482c-4bb5-939a-a5d30cb0bf1d", + "name": "corso-k8s-13.infrascience.cloud.isti.cnr.it.", + "project_id": "3511cd5293dc435ea421aeb0edcfab43", + "records": [ + "146.48.31.120" + ], + "region": "isti_area_pi_1", + "timeouts": null, + "ttl": 8600, + "type": "A", + "value_specs": null, + "zone_id": "d10e7c2f-e856-4b8e-b5a1-33afa0f87ca8" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_floatingip_v2.corso_k8s_ip" + ] + }, + { + "index_key": 13, + "schema_version": 0, + "attributes": { + "description": "Public IP of corso-k8s-14", + "disable_status_check": false, + "id": "d10e7c2f-e856-4b8e-b5a1-33afa0f87ca8/1f205923-962d-490b-bfc8-effcd9f2c060", + "name": "corso-k8s-14.infrascience.cloud.isti.cnr.it.", + "project_id": "3511cd5293dc435ea421aeb0edcfab43", + "records": [ + "146.48.31.53" + ], + "region": "isti_area_pi_1", + "timeouts": null, + "ttl": 8600, + "type": "A", + "value_specs": null, + "zone_id": "d10e7c2f-e856-4b8e-b5a1-33afa0f87ca8" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwLCJ1cGRhdGUiOjYwMDAwMDAwMDAwMH19", + "dependencies": [ + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_floatingip_v2.corso_k8s_ip" + ] + } + ] + }, + { + "mode": "managed", + "type": "openstack_networking_floatingip_associate_v2", + "name": "corso_k8s_ip", + "provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]", + "instances": [ + { + "index_key": 0, + "schema_version": 0, + "attributes": { + "fixed_ip": "10.16.3.161", + "floating_ip": "146.48.30.2", + "id": "7cecabb9-9586-4c37-9fa0-90570d42905a", + "port_id": "1497d52a-3da7-4584-a179-b690c1809b51", + "region": "isti_area_pi_1" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_floatingip_v2.corso_k8s_ip", + "openstack_networking_port_v2.corso_k8s_port", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + }, + { + "index_key": 1, + "schema_version": 0, + "attributes": { + "fixed_ip": "10.16.4.133", + "floating_ip": "146.48.30.250", + "id": "e75f09e7-a31d-4d1c-8ab3-5c08dd33bdb7", + "port_id": "54cfe1ed-e295-471d-9fb7-b73a51d4933c", + "region": "isti_area_pi_1" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_floatingip_v2.corso_k8s_ip", + "openstack_networking_port_v2.corso_k8s_port", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + }, + { + "index_key": 2, + "schema_version": 0, + "attributes": { + "fixed_ip": "10.16.2.202", + "floating_ip": "146.48.29.226", + "id": "c62a3877-28e3-4d27-897d-3198dafe3faa", + "port_id": "b816411f-2df8-40b2-901b-5a4cb9cad568", + "region": "isti_area_pi_1" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_floatingip_v2.corso_k8s_ip", + "openstack_networking_port_v2.corso_k8s_port", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + }, + { + "index_key": 3, + "schema_version": 0, + "attributes": { + "fixed_ip": "10.16.1.9", + "floating_ip": "146.48.31.133", + "id": "59b60421-8f23-4358-8e7c-b803130d8351", + "port_id": "37ce56d3-cb34-4414-96e3-d6f9b79223c5", + "region": "isti_area_pi_1" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_floatingip_v2.corso_k8s_ip", + "openstack_networking_port_v2.corso_k8s_port", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + }, + { + "index_key": 4, + "schema_version": 0, + "attributes": { + "fixed_ip": "10.16.4.153", + "floating_ip": "146.48.30.52", + "id": "e21ffd23-93a9-497b-b247-430cdd72bfd8", + "port_id": "57b476f0-1236-43b1-9085-5be9327930be", + "region": "isti_area_pi_1" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_floatingip_v2.corso_k8s_ip", + "openstack_networking_port_v2.corso_k8s_port", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + }, + { + "index_key": 5, + "schema_version": 0, + "attributes": { + "fixed_ip": "10.16.2.163", + "floating_ip": "146.48.29.237", + "id": "dbafff4e-26d1-4ff7-965a-138e80c83539", + "port_id": "ad374704-546d-450a-b097-175947a9d926", + "region": "isti_area_pi_1" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_floatingip_v2.corso_k8s_ip", + "openstack_networking_port_v2.corso_k8s_port", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + }, + { + "index_key": 6, + "schema_version": 0, + "attributes": { + "fixed_ip": "10.16.2.18", + "floating_ip": "146.48.31.77", + "id": "2014a8ad-355d-40c2-b2d9-776d638db86c", + "port_id": "6279a726-57db-4f9f-9bdc-81e97166574b", + "region": "isti_area_pi_1" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_floatingip_v2.corso_k8s_ip", + "openstack_networking_port_v2.corso_k8s_port", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + }, + { + "index_key": 7, + "schema_version": 0, + "attributes": { + "fixed_ip": "10.16.3.131", + "floating_ip": "146.48.30.209", + "id": "93d349b7-4d1c-4345-b8ac-ddce40f655cd", + "port_id": "9a4c68f6-4e8d-4176-8096-68e62eec631c", + "region": "isti_area_pi_1" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_floatingip_v2.corso_k8s_ip", + "openstack_networking_port_v2.corso_k8s_port", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + }, + { + "index_key": 8, + "schema_version": 0, + "attributes": { + "fixed_ip": "10.16.3.113", + "floating_ip": "146.48.30.22", + "id": "0a207d20-4cce-4d2f-8ca4-377d6f3f4f90", + "port_id": "ea7e2b83-12eb-438a-a822-73798243cdde", + "region": "isti_area_pi_1" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_floatingip_v2.corso_k8s_ip", + "openstack_networking_port_v2.corso_k8s_port", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + }, + { + "index_key": 9, + "schema_version": 0, + "attributes": { + "fixed_ip": "10.16.3.45", + "floating_ip": "146.48.30.31", + "id": "bad8d9a8-7f27-45e8-b4a4-f8a80c2656dd", + "port_id": "170d90a3-015e-4d52-9f4e-da4414c63f9c", + "region": "isti_area_pi_1" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_floatingip_v2.corso_k8s_ip", + "openstack_networking_port_v2.corso_k8s_port", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + }, + { + "index_key": 10, + "schema_version": 0, + "attributes": { + "fixed_ip": "10.16.1.196", + "floating_ip": "146.48.30.5", + "id": "d47ea591-891d-4ab0-8cd9-a9088b3b0b2a", + "port_id": "85bf6fca-db1f-408d-ba03-d0b8019eca37", + "region": "isti_area_pi_1" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_floatingip_v2.corso_k8s_ip", + "openstack_networking_port_v2.corso_k8s_port", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + }, + { + "index_key": 11, + "schema_version": 0, + "attributes": { + "fixed_ip": "10.16.2.187", + "floating_ip": "146.48.30.204", + "id": "1dc74667-4d57-4c5c-a5c8-98ef38d23563", + "port_id": "a6f0bd20-80a2-4f11-98cd-645fef0f403a", + "region": "isti_area_pi_1" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_floatingip_v2.corso_k8s_ip", + "openstack_networking_port_v2.corso_k8s_port", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + }, + { + "index_key": 12, + "schema_version": 0, + "attributes": { + "fixed_ip": "10.16.4.27", + "floating_ip": "146.48.31.120", + "id": "d7c46f99-1441-4333-b5c5-6cbec5173921", + "port_id": "747ae714-8ce9-470f-a2f6-c25cc64acffe", + "region": "isti_area_pi_1" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_floatingip_v2.corso_k8s_ip", + "openstack_networking_port_v2.corso_k8s_port", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + }, + { + "index_key": 13, + "schema_version": 0, + "attributes": { + "fixed_ip": "10.16.1.100", + "floating_ip": "146.48.31.53", + "id": "cb51bb06-a716-4e59-ad46-0afb3aff50b1", + "port_id": "604d36aa-1bd2-4a0a-8b22-1e8d73b194e9", + "region": "isti_area_pi_1" + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "bnVsbA==", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_floatingip_v2.corso_k8s_ip", + "openstack_networking_port_v2.corso_k8s_port", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + } + ] + }, + { + "mode": "managed", + "type": "openstack_networking_floatingip_v2", + "name": "corso_k8s_ip", + "provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]", + "instances": [ + { + "index_key": 0, + "schema_version": 0, + "attributes": { + "address": "146.48.30.2", + "all_tags": [], + "description": "Public IP for corso-k8s-01", + "dns_domain": "", + "dns_name": "", + "fixed_ip": "", + "id": "7cecabb9-9586-4c37-9fa0-90570d42905a", + "pool": "external-network", + "port_id": "", + "region": "isti_area_pi_1", + "subnet_id": null, + "subnet_ids": null, + "tags": null, + "tenant_id": "3511cd5293dc435ea421aeb0edcfab43", + "timeouts": null, + "value_specs": null + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=", + "dependencies": [ + "data.terraform_remote_state.privnet_dns_router" + ] + }, + { + "index_key": 1, + "schema_version": 0, + "attributes": { + "address": "146.48.30.250", + "all_tags": [], + "description": "Public IP for corso-k8s-02", + "dns_domain": "", + "dns_name": "", + "fixed_ip": "", + "id": "e75f09e7-a31d-4d1c-8ab3-5c08dd33bdb7", + "pool": "external-network", + "port_id": "", + "region": "isti_area_pi_1", + "subnet_id": null, + "subnet_ids": null, + "tags": null, + "tenant_id": "3511cd5293dc435ea421aeb0edcfab43", + "timeouts": null, + "value_specs": null + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=", + "dependencies": [ + "data.terraform_remote_state.privnet_dns_router" + ] + }, + { + "index_key": 2, + "schema_version": 0, + "attributes": { + "address": "146.48.29.226", + "all_tags": [], + "description": "Public IP for corso-k8s-03", + "dns_domain": "", + "dns_name": "", + "fixed_ip": "", + "id": "c62a3877-28e3-4d27-897d-3198dafe3faa", + "pool": "external-network", + "port_id": "", + "region": "isti_area_pi_1", + "subnet_id": null, + "subnet_ids": null, + "tags": null, + "tenant_id": "3511cd5293dc435ea421aeb0edcfab43", + "timeouts": null, + "value_specs": null + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=", + "dependencies": [ + "data.terraform_remote_state.privnet_dns_router" + ] + }, + { + "index_key": 3, + "schema_version": 0, + "attributes": { + "address": "146.48.31.133", + "all_tags": [], + "description": "Public IP for corso-k8s-04", + "dns_domain": "", + "dns_name": "", + "fixed_ip": "", + "id": "59b60421-8f23-4358-8e7c-b803130d8351", + "pool": "external-network", + "port_id": "", + "region": "isti_area_pi_1", + "subnet_id": null, + "subnet_ids": null, + "tags": null, + "tenant_id": "3511cd5293dc435ea421aeb0edcfab43", + "timeouts": null, + "value_specs": null + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=", + "dependencies": [ + "data.terraform_remote_state.privnet_dns_router" + ] + }, + { + "index_key": 4, + "schema_version": 0, + "attributes": { + "address": "146.48.30.52", + "all_tags": [], + "description": "Public IP for corso-k8s-05", + "dns_domain": "", + "dns_name": "", + "fixed_ip": "", + "id": "e21ffd23-93a9-497b-b247-430cdd72bfd8", + "pool": "external-network", + "port_id": "", + "region": "isti_area_pi_1", + "subnet_id": null, + "subnet_ids": null, + "tags": null, + "tenant_id": "3511cd5293dc435ea421aeb0edcfab43", + "timeouts": null, + "value_specs": null + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=", + "dependencies": [ + "data.terraform_remote_state.privnet_dns_router" + ] + }, + { + "index_key": 5, + "schema_version": 0, + "attributes": { + "address": "146.48.29.237", + "all_tags": [], + "description": "Public IP for corso-k8s-06", + "dns_domain": "", + "dns_name": "", + "fixed_ip": "", + "id": "dbafff4e-26d1-4ff7-965a-138e80c83539", + "pool": "external-network", + "port_id": "", + "region": "isti_area_pi_1", + "subnet_id": null, + "subnet_ids": null, + "tags": null, + "tenant_id": "3511cd5293dc435ea421aeb0edcfab43", + "timeouts": null, + "value_specs": null + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=", + "dependencies": [ + "data.terraform_remote_state.privnet_dns_router" + ] + }, + { + "index_key": 6, + "schema_version": 0, + "attributes": { + "address": "146.48.31.77", + "all_tags": [], + "description": "Public IP for corso-k8s-07", + "dns_domain": "", + "dns_name": "", + "fixed_ip": "", + "id": "2014a8ad-355d-40c2-b2d9-776d638db86c", + "pool": "external-network", + "port_id": "", + "region": "isti_area_pi_1", + "subnet_id": null, + "subnet_ids": null, + "tags": null, + "tenant_id": "3511cd5293dc435ea421aeb0edcfab43", + "timeouts": null, + "value_specs": null + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=", + "dependencies": [ + "data.terraform_remote_state.privnet_dns_router" + ] + }, + { + "index_key": 7, + "schema_version": 0, + "attributes": { + "address": "146.48.30.209", + "all_tags": [], + "description": "Public IP for corso-k8s-08", + "dns_domain": "", + "dns_name": "", + "fixed_ip": "", + "id": "93d349b7-4d1c-4345-b8ac-ddce40f655cd", + "pool": "external-network", + "port_id": "", + "region": "isti_area_pi_1", + "subnet_id": null, + "subnet_ids": null, + "tags": null, + "tenant_id": "3511cd5293dc435ea421aeb0edcfab43", + "timeouts": null, + "value_specs": null + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=", + "dependencies": [ + "data.terraform_remote_state.privnet_dns_router" + ] + }, + { + "index_key": 8, + "schema_version": 0, + "attributes": { + "address": "146.48.30.22", + "all_tags": [], + "description": "Public IP for corso-k8s-09", + "dns_domain": "", + "dns_name": "", + "fixed_ip": "", + "id": "0a207d20-4cce-4d2f-8ca4-377d6f3f4f90", + "pool": "external-network", + "port_id": "", + "region": "isti_area_pi_1", + "subnet_id": null, + "subnet_ids": null, + "tags": null, + "tenant_id": "3511cd5293dc435ea421aeb0edcfab43", + "timeouts": null, + "value_specs": null + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=", + "dependencies": [ + "data.terraform_remote_state.privnet_dns_router" + ] + }, + { + "index_key": 9, + "schema_version": 0, + "attributes": { + "address": "146.48.30.31", + "all_tags": [], + "description": "Public IP for corso-k8s-10", + "dns_domain": "", + "dns_name": "", + "fixed_ip": "", + "id": "bad8d9a8-7f27-45e8-b4a4-f8a80c2656dd", + "pool": "external-network", + "port_id": "", + "region": "isti_area_pi_1", + "subnet_id": null, + "subnet_ids": null, + "tags": null, + "tenant_id": "3511cd5293dc435ea421aeb0edcfab43", + "timeouts": null, + "value_specs": null + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=", + "dependencies": [ + "data.terraform_remote_state.privnet_dns_router" + ] + }, + { + "index_key": 10, + "schema_version": 0, + "attributes": { + "address": "146.48.30.5", + "all_tags": [], + "description": "Public IP for corso-k8s-11", + "dns_domain": "", + "dns_name": "", + "fixed_ip": "", + "id": "d47ea591-891d-4ab0-8cd9-a9088b3b0b2a", + "pool": "external-network", + "port_id": "", + "region": "isti_area_pi_1", + "subnet_id": null, + "subnet_ids": null, + "tags": null, + "tenant_id": "3511cd5293dc435ea421aeb0edcfab43", + "timeouts": null, + "value_specs": null + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=", + "dependencies": [ + "data.terraform_remote_state.privnet_dns_router" + ] + }, + { + "index_key": 11, + "schema_version": 0, + "attributes": { + "address": "146.48.30.204", + "all_tags": [], + "description": "Public IP for corso-k8s-12", + "dns_domain": "", + "dns_name": "", + "fixed_ip": "", + "id": "1dc74667-4d57-4c5c-a5c8-98ef38d23563", + "pool": "external-network", + "port_id": "", + "region": "isti_area_pi_1", + "subnet_id": null, + "subnet_ids": null, + "tags": null, + "tenant_id": "3511cd5293dc435ea421aeb0edcfab43", + "timeouts": null, + "value_specs": null + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=", + "dependencies": [ + "data.terraform_remote_state.privnet_dns_router" + ] + }, + { + "index_key": 12, + "schema_version": 0, + "attributes": { + "address": "146.48.31.120", + "all_tags": [], + "description": "Public IP for corso-k8s-13", + "dns_domain": "", + "dns_name": "", + "fixed_ip": "", + "id": "d7c46f99-1441-4333-b5c5-6cbec5173921", + "pool": "external-network", + "port_id": "", + "region": "isti_area_pi_1", + "subnet_id": null, + "subnet_ids": null, + "tags": null, + "tenant_id": "3511cd5293dc435ea421aeb0edcfab43", + "timeouts": null, + "value_specs": null + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=", + "dependencies": [ + "data.terraform_remote_state.privnet_dns_router" + ] + }, + { + "index_key": 13, + "schema_version": 0, + "attributes": { + "address": "146.48.31.53", + "all_tags": [], + "description": "Public IP for corso-k8s-14", + "dns_domain": "", + "dns_name": "", + "fixed_ip": "", + "id": "cb51bb06-a716-4e59-ad46-0afb3aff50b1", + "pool": "external-network", + "port_id": "", + "region": "isti_area_pi_1", + "subnet_id": null, + "subnet_ids": null, + "tags": null, + "tenant_id": "3511cd5293dc435ea421aeb0edcfab43", + "timeouts": null, + "value_specs": null + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=", + "dependencies": [ + "data.terraform_remote_state.privnet_dns_router" + ] + } + ] + }, + { + "mode": "managed", + "type": "openstack_networking_port_v2", + "name": "corso_k8s_port", + "provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]", + "instances": [ + { + "index_key": 0, + "schema_version": 0, + "attributes": { + "admin_state_up": true, + "all_fixed_ips": [ + "10.16.3.161" + ], + "all_security_group_ids": [ + "a22fe041-effd-4fcd-b397-0b4eb81f0616", + "d7fa1992-ce11-4508-b8d3-296fdba6c5a1" + ], + "all_tags": [], + "allowed_address_pairs": [], + "binding": [ + { + "host_id": "", + "profile": "", + "vif_details": {}, + "vif_type": "", + "vnic_type": "normal" + } + ], + "description": "", + "device_id": "", + "device_owner": "", + "dns_assignment": [ + { + "fqdn": "host-10-16-3-161.internal-cloud.isti.cnr.it.", + "hostname": "host-10-16-3-161", + "ip_address": "10.16.3.161" + } + ], + "dns_name": "", + "extra_dhcp_option": [], + "fixed_ip": [ + { + "ip_address": "", + "subnet_id": "5daf14c3-8af3-49e1-9ae0-90cfc0432016" + } + ], + "id": "1497d52a-3da7-4584-a179-b690c1809b51", + "mac_address": "fa:16:3e:71:2c:1d", + "name": "corso-k8s-01-port", + "network_id": "3fec28ce-1f6f-44e7-8084-9fc67a25d7c4", + "no_fixed_ip": null, + "no_security_groups": null, + "port_security_enabled": true, + "qos_policy_id": "", + "region": "isti_area_pi_1", + "security_group_ids": [ + "a22fe041-effd-4fcd-b397-0b4eb81f0616", + "d7fa1992-ce11-4508-b8d3-296fdba6c5a1" + ], + "tags": null, + "tenant_id": "3511cd5293dc435ea421aeb0edcfab43", + "timeouts": null, + "value_specs": null + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + }, + { + "index_key": 1, + "schema_version": 0, + "attributes": { + "admin_state_up": true, + "all_fixed_ips": [ + "10.16.4.133" + ], + "all_security_group_ids": [ + "a22fe041-effd-4fcd-b397-0b4eb81f0616", + "d7fa1992-ce11-4508-b8d3-296fdba6c5a1" + ], + "all_tags": [], + "allowed_address_pairs": [], + "binding": [ + { + "host_id": "", + "profile": "", + "vif_details": {}, + "vif_type": "", + "vnic_type": "normal" + } + ], + "description": "", + "device_id": "", + "device_owner": "", + "dns_assignment": [ + { + "fqdn": "host-10-16-4-133.internal-cloud.isti.cnr.it.", + "hostname": "host-10-16-4-133", + "ip_address": "10.16.4.133" + } + ], + "dns_name": "", + "extra_dhcp_option": [], + "fixed_ip": [ + { + "ip_address": "", + "subnet_id": "5daf14c3-8af3-49e1-9ae0-90cfc0432016" + } + ], + "id": "54cfe1ed-e295-471d-9fb7-b73a51d4933c", + "mac_address": "fa:16:3e:df:27:03", + "name": "corso-k8s-02-port", + "network_id": "3fec28ce-1f6f-44e7-8084-9fc67a25d7c4", + "no_fixed_ip": null, + "no_security_groups": null, + "port_security_enabled": true, + "qos_policy_id": "", + "region": "isti_area_pi_1", + "security_group_ids": [ + "a22fe041-effd-4fcd-b397-0b4eb81f0616", + "d7fa1992-ce11-4508-b8d3-296fdba6c5a1" + ], + "tags": null, + "tenant_id": "3511cd5293dc435ea421aeb0edcfab43", + "timeouts": null, + "value_specs": null + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + }, + { + "index_key": 2, + "schema_version": 0, + "attributes": { + "admin_state_up": true, + "all_fixed_ips": [ + "10.16.2.202" + ], + "all_security_group_ids": [ + "a22fe041-effd-4fcd-b397-0b4eb81f0616", + "d7fa1992-ce11-4508-b8d3-296fdba6c5a1" + ], + "all_tags": [], + "allowed_address_pairs": [], + "binding": [ + { + "host_id": "", + "profile": "", + "vif_details": {}, + "vif_type": "", + "vnic_type": "normal" + } + ], + "description": "", + "device_id": "", + "device_owner": "", + "dns_assignment": [ + { + "fqdn": "host-10-16-2-202.internal-cloud.isti.cnr.it.", + "hostname": "host-10-16-2-202", + "ip_address": "10.16.2.202" + } + ], + "dns_name": "", + "extra_dhcp_option": [], + "fixed_ip": [ + { + "ip_address": "", + "subnet_id": "5daf14c3-8af3-49e1-9ae0-90cfc0432016" + } + ], + "id": "b816411f-2df8-40b2-901b-5a4cb9cad568", + "mac_address": "fa:16:3e:dd:eb:87", + "name": "corso-k8s-03-port", + "network_id": "3fec28ce-1f6f-44e7-8084-9fc67a25d7c4", + "no_fixed_ip": null, + "no_security_groups": null, + "port_security_enabled": true, + "qos_policy_id": "", + "region": "isti_area_pi_1", + "security_group_ids": [ + "a22fe041-effd-4fcd-b397-0b4eb81f0616", + "d7fa1992-ce11-4508-b8d3-296fdba6c5a1" + ], + "tags": null, + "tenant_id": "3511cd5293dc435ea421aeb0edcfab43", + "timeouts": null, + "value_specs": null + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + }, + { + "index_key": 3, + "schema_version": 0, + "attributes": { + "admin_state_up": true, + "all_fixed_ips": [ + "10.16.1.9" + ], + "all_security_group_ids": [ + "a22fe041-effd-4fcd-b397-0b4eb81f0616", + "d7fa1992-ce11-4508-b8d3-296fdba6c5a1" + ], + "all_tags": [], + "allowed_address_pairs": [], + "binding": [ + { + "host_id": "", + "profile": "", + "vif_details": {}, + "vif_type": "", + "vnic_type": "normal" + } + ], + "description": "", + "device_id": "", + "device_owner": "", + "dns_assignment": [ + { + "fqdn": "host-10-16-1-9.internal-cloud.isti.cnr.it.", + "hostname": "host-10-16-1-9", + "ip_address": "10.16.1.9" + } + ], + "dns_name": "", + "extra_dhcp_option": [], + "fixed_ip": [ + { + "ip_address": "", + "subnet_id": "5daf14c3-8af3-49e1-9ae0-90cfc0432016" + } + ], + "id": "37ce56d3-cb34-4414-96e3-d6f9b79223c5", + "mac_address": "fa:16:3e:a5:78:72", + "name": "corso-k8s-04-port", + "network_id": "3fec28ce-1f6f-44e7-8084-9fc67a25d7c4", + "no_fixed_ip": null, + "no_security_groups": null, + "port_security_enabled": true, + "qos_policy_id": "", + "region": "isti_area_pi_1", + "security_group_ids": [ + "a22fe041-effd-4fcd-b397-0b4eb81f0616", + "d7fa1992-ce11-4508-b8d3-296fdba6c5a1" + ], + "tags": null, + "tenant_id": "3511cd5293dc435ea421aeb0edcfab43", + "timeouts": null, + "value_specs": null + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + }, + { + "index_key": 4, + "schema_version": 0, + "attributes": { + "admin_state_up": true, + "all_fixed_ips": [ + "10.16.4.153" + ], + "all_security_group_ids": [ + "a22fe041-effd-4fcd-b397-0b4eb81f0616", + "d7fa1992-ce11-4508-b8d3-296fdba6c5a1" + ], + "all_tags": [], + "allowed_address_pairs": [], + "binding": [ + { + "host_id": "", + "profile": "", + "vif_details": {}, + "vif_type": "", + "vnic_type": "normal" + } + ], + "description": "", + "device_id": "", + "device_owner": "", + "dns_assignment": [ + { + "fqdn": "host-10-16-4-153.internal-cloud.isti.cnr.it.", + "hostname": "host-10-16-4-153", + "ip_address": "10.16.4.153" + } + ], + "dns_name": "", + "extra_dhcp_option": [], + "fixed_ip": [ + { + "ip_address": "", + "subnet_id": "5daf14c3-8af3-49e1-9ae0-90cfc0432016" + } + ], + "id": "57b476f0-1236-43b1-9085-5be9327930be", + "mac_address": "fa:16:3e:44:36:05", + "name": "corso-k8s-05-port", + "network_id": "3fec28ce-1f6f-44e7-8084-9fc67a25d7c4", + "no_fixed_ip": null, + "no_security_groups": null, + "port_security_enabled": true, + "qos_policy_id": "", + "region": "isti_area_pi_1", + "security_group_ids": [ + "a22fe041-effd-4fcd-b397-0b4eb81f0616", + "d7fa1992-ce11-4508-b8d3-296fdba6c5a1" + ], + "tags": null, + "tenant_id": "3511cd5293dc435ea421aeb0edcfab43", + "timeouts": null, + "value_specs": null + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + }, + { + "index_key": 5, + "schema_version": 0, + "attributes": { + "admin_state_up": true, + "all_fixed_ips": [ + "10.16.2.163" + ], + "all_security_group_ids": [ + "a22fe041-effd-4fcd-b397-0b4eb81f0616", + "d7fa1992-ce11-4508-b8d3-296fdba6c5a1" + ], + "all_tags": [], + "allowed_address_pairs": [], + "binding": [ + { + "host_id": "", + "profile": "", + "vif_details": {}, + "vif_type": "", + "vnic_type": "normal" + } + ], + "description": "", + "device_id": "", + "device_owner": "", + "dns_assignment": [ + { + "fqdn": "host-10-16-2-163.internal-cloud.isti.cnr.it.", + "hostname": "host-10-16-2-163", + "ip_address": "10.16.2.163" + } + ], + "dns_name": "", + "extra_dhcp_option": [], + "fixed_ip": [ + { + "ip_address": "", + "subnet_id": "5daf14c3-8af3-49e1-9ae0-90cfc0432016" + } + ], + "id": "ad374704-546d-450a-b097-175947a9d926", + "mac_address": "fa:16:3e:32:00:17", + "name": "corso-k8s-06-port", + "network_id": "3fec28ce-1f6f-44e7-8084-9fc67a25d7c4", + "no_fixed_ip": null, + "no_security_groups": null, + "port_security_enabled": true, + "qos_policy_id": "", + "region": "isti_area_pi_1", + "security_group_ids": [ + "a22fe041-effd-4fcd-b397-0b4eb81f0616", + "d7fa1992-ce11-4508-b8d3-296fdba6c5a1" + ], + "tags": null, + "tenant_id": "3511cd5293dc435ea421aeb0edcfab43", + "timeouts": null, + "value_specs": null + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + }, + { + "index_key": 6, + "schema_version": 0, + "attributes": { + "admin_state_up": true, + "all_fixed_ips": [ + "10.16.2.18" + ], + "all_security_group_ids": [ + "a22fe041-effd-4fcd-b397-0b4eb81f0616", + "d7fa1992-ce11-4508-b8d3-296fdba6c5a1" + ], + "all_tags": [], + "allowed_address_pairs": [], + "binding": [ + { + "host_id": "", + "profile": "", + "vif_details": {}, + "vif_type": "", + "vnic_type": "normal" + } + ], + "description": "", + "device_id": "", + "device_owner": "", + "dns_assignment": [ + { + "fqdn": "host-10-16-2-18.internal-cloud.isti.cnr.it.", + "hostname": "host-10-16-2-18", + "ip_address": "10.16.2.18" + } + ], + "dns_name": "", + "extra_dhcp_option": [], + "fixed_ip": [ + { + "ip_address": "", + "subnet_id": "5daf14c3-8af3-49e1-9ae0-90cfc0432016" + } + ], + "id": "6279a726-57db-4f9f-9bdc-81e97166574b", + "mac_address": "fa:16:3e:b9:0d:e9", + "name": "corso-k8s-07-port", + "network_id": "3fec28ce-1f6f-44e7-8084-9fc67a25d7c4", + "no_fixed_ip": null, + "no_security_groups": null, + "port_security_enabled": true, + "qos_policy_id": "", + "region": "isti_area_pi_1", + "security_group_ids": [ + "a22fe041-effd-4fcd-b397-0b4eb81f0616", + "d7fa1992-ce11-4508-b8d3-296fdba6c5a1" + ], + "tags": null, + "tenant_id": "3511cd5293dc435ea421aeb0edcfab43", + "timeouts": null, + "value_specs": null + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + }, + { + "index_key": 7, + "schema_version": 0, + "attributes": { + "admin_state_up": true, + "all_fixed_ips": [ + "10.16.3.131" + ], + "all_security_group_ids": [ + "a22fe041-effd-4fcd-b397-0b4eb81f0616", + "d7fa1992-ce11-4508-b8d3-296fdba6c5a1" + ], + "all_tags": [], + "allowed_address_pairs": [], + "binding": [ + { + "host_id": "", + "profile": "", + "vif_details": {}, + "vif_type": "", + "vnic_type": "normal" + } + ], + "description": "", + "device_id": "", + "device_owner": "", + "dns_assignment": [ + { + "fqdn": "host-10-16-3-131.internal-cloud.isti.cnr.it.", + "hostname": "host-10-16-3-131", + "ip_address": "10.16.3.131" + } + ], + "dns_name": "", + "extra_dhcp_option": [], + "fixed_ip": [ + { + "ip_address": "", + "subnet_id": "5daf14c3-8af3-49e1-9ae0-90cfc0432016" + } + ], + "id": "9a4c68f6-4e8d-4176-8096-68e62eec631c", + "mac_address": "fa:16:3e:55:9e:f1", + "name": "corso-k8s-08-port", + "network_id": "3fec28ce-1f6f-44e7-8084-9fc67a25d7c4", + "no_fixed_ip": null, + "no_security_groups": null, + "port_security_enabled": true, + "qos_policy_id": "", + "region": "isti_area_pi_1", + "security_group_ids": [ + "a22fe041-effd-4fcd-b397-0b4eb81f0616", + "d7fa1992-ce11-4508-b8d3-296fdba6c5a1" + ], + "tags": null, + "tenant_id": "3511cd5293dc435ea421aeb0edcfab43", + "timeouts": null, + "value_specs": null + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + }, + { + "index_key": 8, + "schema_version": 0, + "attributes": { + "admin_state_up": true, + "all_fixed_ips": [ + "10.16.3.113" + ], + "all_security_group_ids": [ + "a22fe041-effd-4fcd-b397-0b4eb81f0616", + "d7fa1992-ce11-4508-b8d3-296fdba6c5a1" + ], + "all_tags": [], + "allowed_address_pairs": [], + "binding": [ + { + "host_id": "", + "profile": "", + "vif_details": {}, + "vif_type": "", + "vnic_type": "normal" + } + ], + "description": "", + "device_id": "", + "device_owner": "", + "dns_assignment": [ + { + "fqdn": "host-10-16-3-113.internal-cloud.isti.cnr.it.", + "hostname": "host-10-16-3-113", + "ip_address": "10.16.3.113" + } + ], + "dns_name": "", + "extra_dhcp_option": [], + "fixed_ip": [ + { + "ip_address": "", + "subnet_id": "5daf14c3-8af3-49e1-9ae0-90cfc0432016" + } + ], + "id": "ea7e2b83-12eb-438a-a822-73798243cdde", + "mac_address": "fa:16:3e:ef:2c:cc", + "name": "corso-k8s-09-port", + "network_id": "3fec28ce-1f6f-44e7-8084-9fc67a25d7c4", + "no_fixed_ip": null, + "no_security_groups": null, + "port_security_enabled": true, + "qos_policy_id": "", + "region": "isti_area_pi_1", + "security_group_ids": [ + "a22fe041-effd-4fcd-b397-0b4eb81f0616", + "d7fa1992-ce11-4508-b8d3-296fdba6c5a1" + ], + "tags": null, + "tenant_id": "3511cd5293dc435ea421aeb0edcfab43", + "timeouts": null, + "value_specs": null + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + }, + { + "index_key": 9, + "schema_version": 0, + "attributes": { + "admin_state_up": true, + "all_fixed_ips": [ + "10.16.3.45" + ], + "all_security_group_ids": [ + "a22fe041-effd-4fcd-b397-0b4eb81f0616", + "d7fa1992-ce11-4508-b8d3-296fdba6c5a1" + ], + "all_tags": [], + "allowed_address_pairs": [], + "binding": [ + { + "host_id": "", + "profile": "", + "vif_details": {}, + "vif_type": "", + "vnic_type": "normal" + } + ], + "description": "", + "device_id": "", + "device_owner": "", + "dns_assignment": [ + { + "fqdn": "host-10-16-3-45.internal-cloud.isti.cnr.it.", + "hostname": "host-10-16-3-45", + "ip_address": "10.16.3.45" + } + ], + "dns_name": "", + "extra_dhcp_option": [], + "fixed_ip": [ + { + "ip_address": "", + "subnet_id": "5daf14c3-8af3-49e1-9ae0-90cfc0432016" + } + ], + "id": "170d90a3-015e-4d52-9f4e-da4414c63f9c", + "mac_address": "fa:16:3e:c1:33:96", + "name": "corso-k8s-10-port", + "network_id": "3fec28ce-1f6f-44e7-8084-9fc67a25d7c4", + "no_fixed_ip": null, + "no_security_groups": null, + "port_security_enabled": true, + "qos_policy_id": "", + "region": "isti_area_pi_1", + "security_group_ids": [ + "a22fe041-effd-4fcd-b397-0b4eb81f0616", + "d7fa1992-ce11-4508-b8d3-296fdba6c5a1" + ], + "tags": null, + "tenant_id": "3511cd5293dc435ea421aeb0edcfab43", + "timeouts": null, + "value_specs": null + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + }, + { + "index_key": 10, + "schema_version": 0, + "attributes": { + "admin_state_up": true, + "all_fixed_ips": [ + "10.16.1.196" + ], + "all_security_group_ids": [ + "a22fe041-effd-4fcd-b397-0b4eb81f0616", + "d7fa1992-ce11-4508-b8d3-296fdba6c5a1" + ], + "all_tags": [], + "allowed_address_pairs": [], + "binding": [ + { + "host_id": "", + "profile": "", + "vif_details": {}, + "vif_type": "", + "vnic_type": "normal" + } + ], + "description": "", + "device_id": "", + "device_owner": "", + "dns_assignment": [ + { + "fqdn": "host-10-16-1-196.internal-cloud.isti.cnr.it.", + "hostname": "host-10-16-1-196", + "ip_address": "10.16.1.196" + } + ], + "dns_name": "", + "extra_dhcp_option": [], + "fixed_ip": [ + { + "ip_address": "", + "subnet_id": "5daf14c3-8af3-49e1-9ae0-90cfc0432016" + } + ], + "id": "85bf6fca-db1f-408d-ba03-d0b8019eca37", + "mac_address": "fa:16:3e:2c:52:c7", + "name": "corso-k8s-11-port", + "network_id": "3fec28ce-1f6f-44e7-8084-9fc67a25d7c4", + "no_fixed_ip": null, + "no_security_groups": null, + "port_security_enabled": true, + "qos_policy_id": "", + "region": "isti_area_pi_1", + "security_group_ids": [ + "a22fe041-effd-4fcd-b397-0b4eb81f0616", + "d7fa1992-ce11-4508-b8d3-296fdba6c5a1" + ], + "tags": null, + "tenant_id": "3511cd5293dc435ea421aeb0edcfab43", + "timeouts": null, + "value_specs": null + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + }, + { + "index_key": 11, + "schema_version": 0, + "attributes": { + "admin_state_up": true, + "all_fixed_ips": [ + "10.16.2.187" + ], + "all_security_group_ids": [ + "a22fe041-effd-4fcd-b397-0b4eb81f0616", + "d7fa1992-ce11-4508-b8d3-296fdba6c5a1" + ], + "all_tags": [], + "allowed_address_pairs": [], + "binding": [ + { + "host_id": "", + "profile": "", + "vif_details": {}, + "vif_type": "", + "vnic_type": "normal" + } + ], + "description": "", + "device_id": "", + "device_owner": "", + "dns_assignment": [ + { + "fqdn": "host-10-16-2-187.internal-cloud.isti.cnr.it.", + "hostname": "host-10-16-2-187", + "ip_address": "10.16.2.187" + } + ], + "dns_name": "", + "extra_dhcp_option": [], + "fixed_ip": [ + { + "ip_address": "", + "subnet_id": "5daf14c3-8af3-49e1-9ae0-90cfc0432016" + } + ], + "id": "a6f0bd20-80a2-4f11-98cd-645fef0f403a", + "mac_address": "fa:16:3e:99:30:97", + "name": "corso-k8s-12-port", + "network_id": "3fec28ce-1f6f-44e7-8084-9fc67a25d7c4", + "no_fixed_ip": null, + "no_security_groups": null, + "port_security_enabled": true, + "qos_policy_id": "", + "region": "isti_area_pi_1", + "security_group_ids": [ + "a22fe041-effd-4fcd-b397-0b4eb81f0616", + "d7fa1992-ce11-4508-b8d3-296fdba6c5a1" + ], + "tags": null, + "tenant_id": "3511cd5293dc435ea421aeb0edcfab43", + "timeouts": null, + "value_specs": null + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + }, + { + "index_key": 12, + "schema_version": 0, + "attributes": { + "admin_state_up": true, + "all_fixed_ips": [ + "10.16.4.27" + ], + "all_security_group_ids": [ + "a22fe041-effd-4fcd-b397-0b4eb81f0616", + "d7fa1992-ce11-4508-b8d3-296fdba6c5a1" + ], + "all_tags": [], + "allowed_address_pairs": [], + "binding": [ + { + "host_id": "", + "profile": "", + "vif_details": {}, + "vif_type": "", + "vnic_type": "normal" + } + ], + "description": "", + "device_id": "", + "device_owner": "", + "dns_assignment": [ + { + "fqdn": "host-10-16-4-27.internal-cloud.isti.cnr.it.", + "hostname": "host-10-16-4-27", + "ip_address": "10.16.4.27" + } + ], + "dns_name": "", + "extra_dhcp_option": [], + "fixed_ip": [ + { + "ip_address": "", + "subnet_id": "5daf14c3-8af3-49e1-9ae0-90cfc0432016" + } + ], + "id": "747ae714-8ce9-470f-a2f6-c25cc64acffe", + "mac_address": "fa:16:3e:89:38:14", + "name": "corso-k8s-13-port", + "network_id": "3fec28ce-1f6f-44e7-8084-9fc67a25d7c4", + "no_fixed_ip": null, + "no_security_groups": null, + "port_security_enabled": true, + "qos_policy_id": "", + "region": "isti_area_pi_1", + "security_group_ids": [ + "a22fe041-effd-4fcd-b397-0b4eb81f0616", + "d7fa1992-ce11-4508-b8d3-296fdba6c5a1" + ], + "tags": null, + "tenant_id": "3511cd5293dc435ea421aeb0edcfab43", + "timeouts": null, + "value_specs": null + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + }, + { + "index_key": 13, + "schema_version": 0, + "attributes": { + "admin_state_up": true, + "all_fixed_ips": [ + "10.16.1.100" + ], + "all_security_group_ids": [ + "a22fe041-effd-4fcd-b397-0b4eb81f0616", + "d7fa1992-ce11-4508-b8d3-296fdba6c5a1" + ], + "all_tags": [], + "allowed_address_pairs": [], + "binding": [ + { + "host_id": "", + "profile": "", + "vif_details": {}, + "vif_type": "", + "vnic_type": "normal" + } + ], + "description": "", + "device_id": "", + "device_owner": "", + "dns_assignment": [ + { + "fqdn": "host-10-16-1-100.internal-cloud.isti.cnr.it.", + "hostname": "host-10-16-1-100", + "ip_address": "10.16.1.100" + } + ], + "dns_name": "", + "extra_dhcp_option": [], + "fixed_ip": [ + { + "ip_address": "", + "subnet_id": "5daf14c3-8af3-49e1-9ae0-90cfc0432016" + } + ], + "id": "604d36aa-1bd2-4a0a-8b22-1e8d73b194e9", + "mac_address": "fa:16:3e:e6:43:f2", + "name": "corso-k8s-14-port", + "network_id": "3fec28ce-1f6f-44e7-8084-9fc67a25d7c4", + "no_fixed_ip": null, + "no_security_groups": null, + "port_security_enabled": true, + "qos_policy_id": "", + "region": "isti_area_pi_1", + "security_group_ids": [ + "a22fe041-effd-4fcd-b397-0b4eb81f0616", + "d7fa1992-ce11-4508-b8d3-296fdba6c5a1" + ], + "tags": null, + "tenant_id": "3511cd5293dc435ea421aeb0edcfab43", + "timeouts": null, + "value_specs": null + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo2MDAwMDAwMDAwMDAsImRlbGV0ZSI6NjAwMDAwMDAwMDAwfX0=", + "dependencies": [ + "data.openstack_networking_secgroup_v2.default", + "data.terraform_remote_state.privnet_dns_router", + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + } + ] + }, + { + "mode": "managed", + "type": "openstack_networking_secgroup_rule_v2", + "name": "ssh_from_anywhere_ingress", + "provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]", + "instances": [ + { + "schema_version": 0, + "attributes": { + "description": "", + "direction": "ingress", + "ethertype": "IPv4", + "id": "d8db3da8-bea8-48a4-821e-2da604a93655", + "port_range_max": 22, + "port_range_min": 22, + "protocol": "tcp", + "region": "isti_area_pi_1", + "remote_address_group_id": "", + "remote_group_id": "", + "remote_ip_prefix": "0.0.0.0/0", + "security_group_id": "a22fe041-effd-4fcd-b397-0b4eb81f0616", + "tenant_id": "3511cd5293dc435ea421aeb0edcfab43", + "timeouts": null + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiZGVsZXRlIjo2MDAwMDAwMDAwMDB9fQ==", + "dependencies": [ + "openstack_networking_secgroup_v2.ssh_from_anywhere" + ] + } + ] + }, + { + "mode": "managed", + "type": "openstack_networking_secgroup_v2", + "name": "ssh_from_anywhere", + "provider": "provider[\"registry.terraform.io/terraform-provider-openstack/openstack\"]", + "instances": [ + { + "schema_version": 0, + "attributes": { + "all_tags": [], + "delete_default_rules": true, + "description": "Allow SSH access from anywhere", + "id": "a22fe041-effd-4fcd-b397-0b4eb81f0616", + "name": "corso-k8s-ssh-from-anywhere", + "region": "isti_area_pi_1", + "stateful": false, + "tags": null, + "tenant_id": "3511cd5293dc435ea421aeb0edcfab43", + "timeouts": null + }, + "sensitive_attributes": [], + "identity_schema_version": 0, + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiZGVsZXRlIjo2MDAwMDAwMDAwMDB9fQ==" + } + ] + } + ], + "check_results": null +}