From 7acd8471f9320620bf62c6e77f29ac136ed818c4 Mon Sep 17 00:00:00 2001 From: lenape Date: Tue, 8 Apr 2025 03:17:17 +0000 Subject: [PATCH] bluegreen --- mainbluegreen.txt | 241 +++++ terraform.tfstate | 2100 +------------------------------------- terraform.tfstate.backup | 226 ++++ 3 files changed, 470 insertions(+), 2097 deletions(-) create mode 100644 mainbluegreen.txt create mode 100644 terraform.tfstate.backup diff --git a/mainbluegreen.txt b/mainbluegreen.txt new file mode 100644 index 0000000..d45f982 --- /dev/null +++ b/mainbluegreen.txt @@ -0,0 +1,241 @@ +# Configure the Azure Provider +terraform { + required_providers { + azurerm = { + source = "hashicorp/azurerm" + version = "~> 3.0" + } + } +} + +provider "azurerm" { + features {} +} + +data "azurerm_client_config" "current" {} + +# ----------------------------------------------------------------------------- +# Naming Conventions +# ----------------------------------------------------------------------------- +locals { + vm_names = ["Quetzalcoatl", "Huitzilopochtli", "Pachamama", "Viracocha", "Inti"] + network_names = ["Aztec", "Inca", "Maya", "Mississippian", "Anasazi"] + resource_groups = { + eastus2 = "muscogee-rg" + westus2 = "sioux-rg" + centralus = "cherokee-rg" + } + location_default = "eastus2" + location_quetzalcoatl = "westus2" + location_centralus = "centralus" + admin_username = "lenape" + key_vault_name_prefix = "kv-secure-creds" + storage_account_name = "povertypoint" + container_name = "tfstate" +} + +# ----------------------------------------------------------------------------- +# 1. Resource Groups +# ----------------------------------------------------------------------------- +resource "azurerm_resource_group" "rg" { + for_each = local.resource_groups + name = each.value + location = local.location_default +} + +# ----------------------------------------------------------------------------- +# 2. Azure Key Vault for Secure Password Management +# ----------------------------------------------------------------------------- +resource "azurerm_key_vault" "kv" { + name = "${local.key_vault_name_prefix}-${random_string.kv_suffix.result}" + location = azurerm_resource_group.rg["eastus2"].location + resource_group_name = azurerm_resource_group.rg["eastus2"].name + tenant_id = data.azurerm_client_config.current.tenant_id + sku_name = "standard" + + access_policy { + tenant_id = data.azurerm_client_config.current.tenant_id + object_id = data.azurerm_client_config.current.object_id + key_permissions = ["Get"] + secret_permissions = ["Get", "Set"] + storage_permissions = ["Get"] + } +} + +resource "random_string" "kv_suffix" { + length = 8 + lower = true + numeric = true + special = false +} + +resource "random_password" "admin_password" { + length = 20 + special = true + override_special = "!#$%&*()-_=+[]{}<>:?" +} + +resource "azurerm_key_vault_secret" "admin_password_secret" { + name = "linux-admin-password" + value = random_password.admin_password.result + key_vault_id = azurerm_key_vault.kv.id +} + +# ----------------------------------------------------------------------------- +# 3. Virtual Networks, Subnets, and Network Security Groups +# ----------------------------------------------------------------------------- +resource "azurerm_virtual_network" "vnet" { + for_each = toset([local.location_default, local.location_quetzalcoatl, local.location_centralus]) + name = "${local.network_names[0]}-vnet-${each.key}" + location = each.key + resource_group_name = azurerm_resource_group.rg[each.key].name + address_space = ["10.0.0.0/16"] +} + +resource "azurerm_subnet" "subnet" { + for_each = azurerm_virtual_network.vnet + name = "default" + resource_group_name = azurerm_resource_group.rg[each.key].name + virtual_network_name = each.value.name + address_prefixes = ["10.0.1.0/24"] +} + +resource "azurerm_network_security_group" "nsg" { + for_each = azurerm_virtual_network.vnet + name = "${local.network_names[0]}-nsg-${each.key}" + location = each.key + resource_group_name = azurerm_resource_group.rg[each.key].name + security_rule { + name = "AllowSSH" + priority = 100 + direction = "Inbound" + access = "Allow" + protocol = "Tcp" + source_port_range = "*" + destination_port_range = "22" + source_address_prefix = "*" + destination_address_prefix = "*" + } +} + +# ----------------------------------------------------------------------------- +# 4. Public IPs for VMs +# ----------------------------------------------------------------------------- +resource "azurerm_public_ip" "public_ip" { + for_each = toset(local.vm_names) + name = "${each.value}-pip" + location = azurerm_resource_group.rg[local.location_default].location + resource_group_name = azurerm_resource_group.rg[local.location_default].name + allocation_method = "Dynamic" +} + +# ----------------------------------------------------------------------------- +# 5. Load Balancer Setup (Blue-Green with Frontend IPs and Backend Pools) +# ----------------------------------------------------------------------------- +resource "azurerm_lb" "load_balancer" { + for_each = toset([local.location_default, local.location_centralus]) + name = "lb-${each.key}" + location = each.key + resource_group_name = azurerm_resource_group.rg[each.key].name + sku = "Basic" +} + +resource "azurerm_lb_frontend_ip_configuration" "frontend_ip" { + for_each = azurerm_lb.load_balancer + name = "frontend-${each.key}" + resource_group_name = each.value.resource_group_name + loadbalancer_id = each.value.id + private_ip_address = "10.0.0.4" + private_ip_address_allocation = "Dynamic" +} + +resource "azurerm_lb_backend_address_pool" "backend_pool" { + for_each = azurerm_lb.load_balancer + name = "backend-${each.key}" + resource_group_name = each.value.resource_group_name + loadbalancer_id = each.value.id +} + +# ----------------------------------------------------------------------------- +# 6. Network Interface and VM Configurations (Blue-Green) +# ----------------------------------------------------------------------------- +resource "azurerm_network_interface" "nic" { + for_each = toset(local.vm_names) + name = "${each.value}-nic" + location = azurerm_resource_group.rg[local.location_default].location + resource_group_name = azurerm_resource_group.rg[local.location_default].name + ip_configuration { + name = "internal" + subnet_id = azurerm_subnet.subnet["eastus2"].id + private_ip_address_allocation = "Dynamic" + public_ip_address_id = azurerm_public_ip.public_ip[each.value].id + } +} + +resource "azurerm_linux_virtual_machine" "vm" { + for_each = toset(local.vm_names) + name = each.value + location = azurerm_resource_group.rg[local.location_default].location + resource_group_name = azurerm_resource_group.rg[local.location_default].name + network_interface_ids = [azurerm_network_interface.nic[each.value].id] + size = "Standard_B1ls" + os_disk { + caching = "ReadWrite" + storage_account_type = "Standard_LRS" + } + source_image_reference { + publisher = "Canonical" + offer = "UbuntuServer" + sku = "18.04-LTS" + version = "latest" + } + computer_name = lower(each.value) + admin_username = local.admin_username + disable_password_authentication = false + admin_password = azurerm_key_vault_secret.admin_password_secret.value +} + +# ----------------------------------------------------------------------------- +# 7. Load Balancer Backend Pool Associations (VMs to Backend) +# ----------------------------------------------------------------------------- +resource "azurerm_lb_backend_address_pool_association" "backend_pool_association" { + for_each = toset(local.vm_names) + network_interface_id = azurerm_network_interface.nic[each.value].id + backend_address_pool_id = azurerm_lb_backend_address_pool.backend_pool["eastus2"].id +} + +# ----------------------------------------------------------------------------- +# 8. Storage Account and Blob Container for tfstate +# ----------------------------------------------------------------------------- +resource "azurerm_storage_account" "storage" { + name = local.storage_account_name + resource_group_name = azurerm_resource_group.rg["eastus2"].name + location = azurerm_resource_group.rg["eastus2"].location + account_tier = "Standard" + account_replication_type = "LRS" +} + +resource "azurerm_storage_container" "tfstate_container" { + name = local.container_name + storage_account_name = azurerm_storage_account.storage.name + container_access_type = "private" +} + +# ----------------------------------------------------------------------------- +# 9. Output the Public IP Addresses and Key Vault Name +# ----------------------------------------------------------------------------- +output "public_ips" { + value = azurerm_public_ip.public_ip[*].ip_address +} + +output "key_vault_name" { + value = azurerm_key_vault.kv.name +} + +output "storage_account_name" { + value = azurerm_storage_account.storage.name +} + +output "storage_container_name" { + value = azurerm_storage_container.tfstate_container.name +} diff --git a/terraform.tfstate b/terraform.tfstate index 4b00dcb..bc279ba 100644 --- a/terraform.tfstate +++ b/terraform.tfstate @@ -1,2103 +1,9 @@ { "version": 4, "terraform_version": "1.11.3", - "serial": 39, + "serial": 87, "lineage": "22565f98-f6c8-a960-466f-9dfb72683787", - "outputs": { - "key_vault_name": { - "value": "kv-secure-creds-tlr5sYFS", - "type": "string" - }, - "pachamama_public_ip": { - "value": "", - "type": "string" - }, - "public_ips_centralus": { - "value": [ - "", - "" - ], - "type": [ - "tuple", - [ - "string", - "string" - ] - ] - }, - "public_ips_eastus2": { - "value": [ - "" - ], - "type": [ - "tuple", - [ - "string" - ] - ] - }, - "quetzalcoatl_public_ip": { - "value": "", - "type": "string" - }, - "storage_account_name": { - "value": "povertypoint", - "type": "string" - }, - "storage_container_name": { - "value": "tfstate", - "type": "string" - } - }, - "resources": [ - { - "mode": "data", - "type": "azurerm_client_config", - "name": "current", - "provider": "provider[\"registry.terraform.io/hashicorp/azurerm\"]", - "instances": [ - { - "schema_version": 0, - "attributes": { - "client_id": "04b07795-8ddb-461a-bbee-02f9e1bf7b46", - "id": "Y2xpZW50Q29uZmlncy9jbGllbnRJZD0wNGIwNzc5NS04ZGRiLTQ2MWEtYmJlZS0wMmY5ZTFiZjdiNDY7b2JqZWN0SWQ9MTNkOWE2OGYtYTlmZi00ZjllLWJiYWMtNWMzNDE2NDQyOWQ2O3N1YnNjcmlwdGlvbklkPWUzZjY2M2U4LTk5YjEtNGUwYS1iMjM2LWEyYTZlNGRjZWNhYTt0ZW5hbnRJZD1lMmMwNWQ3Ni1hNTMwLTQxZTUtYWUwNC1lNjBmN2VmYTFmNzg=", - "object_id": "13d9a68f-a9ff-4f9e-bbac-5c34164429d6", - "subscription_id": "e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa", - "tenant_id": "e2c05d76-a530-41e5-ae04-e60f7efa1f78", - "timeouts": null - }, - "sensitive_attributes": [] - } - ] - }, - { - "mode": "managed", - "type": "azurerm_key_vault", - "name": "kv", - "provider": "provider[\"registry.terraform.io/hashicorp/azurerm\"]", - "instances": [ - { - "schema_version": 2, - "attributes": { - "access_policy": [ - { - "application_id": "", - "certificate_permissions": null, - "key_permissions": [ - "Get" - ], - "object_id": "13d9a68f-a9ff-4f9e-bbac-5c34164429d6", - "secret_permissions": [ - "Get", - "Set" - ], - "storage_permissions": [ - "Get" - ], - "tenant_id": "e2c05d76-a530-41e5-ae04-e60f7efa1f78" - } - ], - "contact": [], - "enable_rbac_authorization": false, - "enabled_for_deployment": false, - "enabled_for_disk_encryption": false, - "enabled_for_template_deployment": false, - "id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/muscogee-rg/providers/Microsoft.KeyVault/vaults/kv-secure-creds-tlr5sYFS", - "location": "eastus2", - "name": "kv-secure-creds-tlr5sYFS", - "network_acls": [ - { - "bypass": "AzureServices", - "default_action": "Allow", - "ip_rules": [], - "virtual_network_subnet_ids": [] - } - ], - "public_network_access_enabled": true, - "purge_protection_enabled": false, - "resource_group_name": "muscogee-rg", - "sku_name": "standard", - "soft_delete_retention_days": 90, - "tags": null, - "tenant_id": "e2c05d76-a530-41e5-ae04-e60f7efa1f78", - "timeouts": null, - "vault_uri": "https://kv-secure-creds-tlr5syfs.vault.azure.net/" - }, - "sensitive_attributes": [], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjoxODAwMDAwMDAwMDAwfSwic2NoZW1hX3ZlcnNpb24iOiIyIn0=", - "dependencies": [ - "azurerm_resource_group.rg_eastus2", - "data.azurerm_client_config.current", - "random_string.kv_suffix" - ] - } - ] - }, - { - "mode": "managed", - "type": "azurerm_key_vault_secret", - "name": "admin_password_secret", - "provider": "provider[\"registry.terraform.io/hashicorp/azurerm\"]", - "instances": [ - { - "schema_version": 0, - "attributes": { - "content_type": "", - "expiration_date": null, - "id": "https://kv-secure-creds-tlr5syfs.vault.azure.net/secrets/linux-admin-password/0762d4e91c3d49e89f9c0b7ed2d6c02e", - "key_vault_id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/muscogee-rg/providers/Microsoft.KeyVault/vaults/kv-secure-creds-tlr5sYFS", - "name": "linux-admin-password", - "not_before_date": null, - "resource_id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/muscogee-rg/providers/Microsoft.KeyVault/vaults/kv-secure-creds-tlr5sYFS/secrets/linux-admin-password/versions/0762d4e91c3d49e89f9c0b7ed2d6c02e", - "resource_versionless_id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/muscogee-rg/providers/Microsoft.KeyVault/vaults/kv-secure-creds-tlr5sYFS/secrets/linux-admin-password", - "tags": null, - "timeouts": null, - "value": "-tv1k#:*pqQK7Sw1\u0026E\u003eS", - "version": "0762d4e91c3d49e89f9c0b7ed2d6c02e", - "versionless_id": "https://kv-secure-creds-tlr5syfs.vault.azure.net/secrets/linux-admin-password" - }, - "sensitive_attributes": [ - [ - { - "type": "get_attr", - "value": "value" - } - ] - ], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInJlYWQiOjE4MDAwMDAwMDAwMDAsInVwZGF0ZSI6MTgwMDAwMDAwMDAwMH19", - "dependencies": [ - "azurerm_key_vault.kv", - "azurerm_resource_group.rg_eastus2", - "data.azurerm_client_config.current", - "random_password.admin_password", - "random_string.kv_suffix" - ] - } - ] - }, - { - "mode": "managed", - "type": "azurerm_linux_virtual_machine", - "name": "quetzalcoatl_vm", - "provider": "provider[\"registry.terraform.io/hashicorp/azurerm\"]", - "instances": [ - { - "schema_version": 0, - "attributes": { - "additional_capabilities": [], - "admin_password": "-tv1k#:*pqQK7Sw1\u0026E\u003eS", - "admin_ssh_key": [], - "admin_username": "lenape", - "allow_extension_operations": true, - "availability_set_id": "", - "boot_diagnostics": [], - "bypass_platform_safety_checks_on_user_schedule_enabled": false, - "capacity_reservation_group_id": "", - "computer_name": "quetzalcoatl", - "custom_data": null, - "dedicated_host_group_id": "", - "dedicated_host_id": "", - "disable_password_authentication": false, - "disk_controller_type": "", - "edge_zone": "", - "encryption_at_host_enabled": false, - "eviction_policy": "", - "extensions_time_budget": "PT1H30M", - "gallery_application": [], - "id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/sioux-rg/providers/Microsoft.Compute/virtualMachines/Quetzalcoatl", - "identity": [], - "license_type": "", - "location": "westus2", - "max_bid_price": -1, - "name": "Quetzalcoatl", - "network_interface_ids": [ - "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/sioux-rg/providers/Microsoft.Network/networkInterfaces/Quetzalcoatl-nic-westus2" - ], - "os_disk": [ - { - "caching": "ReadWrite", - "diff_disk_settings": [], - "disk_encryption_set_id": "", - "disk_size_gb": 30, - "name": "Quetzalcoatl_disk1_5e151131fce3474f951f5afdb4f34e0f", - "secure_vm_disk_encryption_set_id": "", - "security_encryption_type": "", - "storage_account_type": "Standard_LRS", - "write_accelerator_enabled": false - } - ], - "os_image_notification": [], - "patch_assessment_mode": "ImageDefault", - "patch_mode": "ImageDefault", - "plan": [], - "platform_fault_domain": -1, - "priority": "Regular", - "private_ip_address": "10.1.1.4", - "private_ip_addresses": [ - "10.1.1.4" - ], - "provision_vm_agent": true, - "proximity_placement_group_id": "", - "public_ip_address": "20.36.13.206", - "public_ip_addresses": [ - "20.36.13.206" - ], - "reboot_setting": "", - "resource_group_name": "sioux-rg", - "secret": [], - "secure_boot_enabled": false, - "size": "Standard_B1ls", - "source_image_id": "", - "source_image_reference": [ - { - "offer": "UbuntuServer", - "publisher": "Canonical", - "sku": "18.04-LTS", - "version": "latest" - } - ], - "tags": null, - "termination_notification": null, - "timeouts": null, - "user_data": "", - "virtual_machine_id": "a246ce10-ce0b-411e-8f55-2e963c600e48", - "virtual_machine_scale_set_id": "", - "vm_agent_platform_updates_enabled": false, - "vtpm_enabled": false, - "zone": "" - }, - "sensitive_attributes": [ - [ - { - "type": "get_attr", - "value": "admin_password" - } - ], - [ - { - "type": "get_attr", - "value": "custom_data" - } - ] - ], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoyNzAwMDAwMDAwMDAwLCJkZWxldGUiOjI3MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjoyNzAwMDAwMDAwMDAwfX0=", - "dependencies": [ - "azurerm_key_vault.kv", - "azurerm_key_vault_secret.admin_password_secret", - "azurerm_network_interface.quetzalcoatl_nic", - "azurerm_public_ip.quetzalcoatl_pip", - "azurerm_resource_group.rg_eastus2", - "azurerm_resource_group.rg_westus2", - "azurerm_subnet.subnet_westus2", - "azurerm_virtual_network.vnet_westus2", - "data.azurerm_client_config.current", - "random_password.admin_password", - "random_string.kv_suffix" - ] - } - ] - }, - { - "mode": "managed", - "type": "azurerm_linux_virtual_machine", - "name": "vm_centralus", - "provider": "provider[\"registry.terraform.io/hashicorp/azurerm\"]", - "instances": [ - { - "index_key": 0, - "schema_version": 0, - "attributes": { - "additional_capabilities": [], - "admin_password": "-tv1k#:*pqQK7Sw1\u0026E\u003eS", - "admin_ssh_key": [], - "admin_username": "lenape", - "allow_extension_operations": true, - "availability_set_id": "", - "boot_diagnostics": [], - "bypass_platform_safety_checks_on_user_schedule_enabled": false, - "capacity_reservation_group_id": "", - "computer_name": "viracocha", - "custom_data": null, - "dedicated_host_group_id": "", - "dedicated_host_id": "", - "disable_password_authentication": false, - "disk_controller_type": "", - "edge_zone": "", - "encryption_at_host_enabled": false, - "eviction_policy": "", - "extensions_time_budget": "PT1H30M", - "gallery_application": [], - "id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/cherokee-rg/providers/Microsoft.Compute/virtualMachines/Viracocha", - "identity": [], - "license_type": "", - "location": "centralus", - "max_bid_price": -1, - "name": "Viracocha", - "network_interface_ids": [ - "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/cherokee-rg/providers/Microsoft.Network/networkInterfaces/Viracocha-nic" - ], - "os_disk": [ - { - "caching": "ReadWrite", - "diff_disk_settings": [], - "disk_encryption_set_id": "", - "disk_size_gb": 30, - "name": "Viracocha_disk1_2a91bda5c1e34dbda540df2fb19a0bb0", - "secure_vm_disk_encryption_set_id": "", - "security_encryption_type": "", - "storage_account_type": "Standard_LRS", - "write_accelerator_enabled": false - } - ], - "os_image_notification": [], - "patch_assessment_mode": "ImageDefault", - "patch_mode": "ImageDefault", - "plan": [], - "platform_fault_domain": -1, - "priority": "Regular", - "private_ip_address": "10.2.1.5", - "private_ip_addresses": [ - "10.2.1.5" - ], - "provision_vm_agent": true, - "proximity_placement_group_id": "", - "public_ip_address": "104.43.200.203", - "public_ip_addresses": [ - "104.43.200.203" - ], - "reboot_setting": "", - "resource_group_name": "cherokee-rg", - "secret": [], - "secure_boot_enabled": false, - "size": "Standard_B1ls", - "source_image_id": "", - "source_image_reference": [ - { - "offer": "UbuntuServer", - "publisher": "Canonical", - "sku": "18.04-LTS", - "version": "latest" - } - ], - "tags": null, - "termination_notification": null, - "timeouts": null, - "user_data": "", - "virtual_machine_id": "982e8d2e-e9a8-40c4-84f3-c6aa65729897", - "virtual_machine_scale_set_id": "", - "vm_agent_platform_updates_enabled": false, - "vtpm_enabled": false, - "zone": "" - }, - "sensitive_attributes": [ - [ - { - "type": "get_attr", - "value": "custom_data" - } - ], - [ - { - "type": "get_attr", - "value": "admin_password" - } - ] - ], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoyNzAwMDAwMDAwMDAwLCJkZWxldGUiOjI3MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjoyNzAwMDAwMDAwMDAwfX0=", - "dependencies": [ - "azurerm_key_vault.kv", - "azurerm_key_vault_secret.admin_password_secret", - "azurerm_network_interface.nic_centralus", - "azurerm_public_ip.public_ip_centralus", - "azurerm_resource_group.rg_centralus", - "azurerm_resource_group.rg_eastus2", - "azurerm_subnet.subnet_centralus", - "azurerm_virtual_network.vnet_centralus", - "data.azurerm_client_config.current", - "random_password.admin_password", - "random_string.kv_suffix" - ] - }, - { - "index_key": 1, - "schema_version": 0, - "attributes": { - "additional_capabilities": [], - "admin_password": "-tv1k#:*pqQK7Sw1\u0026E\u003eS", - "admin_ssh_key": [], - "admin_username": "lenape", - "allow_extension_operations": true, - "availability_set_id": "", - "boot_diagnostics": [], - "bypass_platform_safety_checks_on_user_schedule_enabled": false, - "capacity_reservation_group_id": "", - "computer_name": "inti", - "custom_data": null, - "dedicated_host_group_id": "", - "dedicated_host_id": "", - "disable_password_authentication": false, - "disk_controller_type": "", - "edge_zone": "", - "encryption_at_host_enabled": false, - "eviction_policy": "", - "extensions_time_budget": "PT1H30M", - "gallery_application": [], - "id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/cherokee-rg/providers/Microsoft.Compute/virtualMachines/Inti", - "identity": [], - "license_type": "", - "location": "centralus", - "max_bid_price": -1, - "name": "Inti", - "network_interface_ids": [ - "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/cherokee-rg/providers/Microsoft.Network/networkInterfaces/Inti-nic" - ], - "os_disk": [ - { - "caching": "ReadWrite", - "diff_disk_settings": [], - "disk_encryption_set_id": "", - "disk_size_gb": 30, - "name": "Inti_disk1_d86a77b1d18b4e1b930a53296da0c28f", - "secure_vm_disk_encryption_set_id": "", - "security_encryption_type": "", - "storage_account_type": "Standard_LRS", - "write_accelerator_enabled": false - } - ], - "os_image_notification": [], - "patch_assessment_mode": "ImageDefault", - "patch_mode": "ImageDefault", - "plan": [], - "platform_fault_domain": -1, - "priority": "Regular", - "private_ip_address": "10.2.1.4", - "private_ip_addresses": [ - "10.2.1.4" - ], - "provision_vm_agent": true, - "proximity_placement_group_id": "", - "public_ip_address": "104.43.200.129", - "public_ip_addresses": [ - "104.43.200.129" - ], - "reboot_setting": "", - "resource_group_name": "cherokee-rg", - "secret": [], - "secure_boot_enabled": false, - "size": "Standard_B1ls", - "source_image_id": "", - "source_image_reference": [ - { - "offer": "UbuntuServer", - "publisher": "Canonical", - "sku": "18.04-LTS", - "version": "latest" - } - ], - "tags": null, - "termination_notification": null, - "timeouts": null, - "user_data": "", - "virtual_machine_id": "6127fd50-b09a-475f-a9ae-2a0e3709b0ee", - "virtual_machine_scale_set_id": "", - "vm_agent_platform_updates_enabled": false, - "vtpm_enabled": false, - "zone": "" - }, - "sensitive_attributes": [ - [ - { - "type": "get_attr", - "value": "custom_data" - } - ], - [ - { - "type": "get_attr", - "value": "admin_password" - } - ] - ], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoyNzAwMDAwMDAwMDAwLCJkZWxldGUiOjI3MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjoyNzAwMDAwMDAwMDAwfX0=", - "dependencies": [ - "azurerm_key_vault.kv", - "azurerm_key_vault_secret.admin_password_secret", - "azurerm_network_interface.nic_centralus", - "azurerm_public_ip.public_ip_centralus", - "azurerm_resource_group.rg_centralus", - "azurerm_resource_group.rg_eastus2", - "azurerm_subnet.subnet_centralus", - "azurerm_virtual_network.vnet_centralus", - "data.azurerm_client_config.current", - "random_password.admin_password", - "random_string.kv_suffix" - ] - } - ] - }, - { - "mode": "managed", - "type": "azurerm_linux_virtual_machine", - "name": "vm_eastus2", - "provider": "provider[\"registry.terraform.io/hashicorp/azurerm\"]", - "instances": [ - { - "schema_version": 0, - "attributes": { - "additional_capabilities": [], - "admin_password": "-tv1k#:*pqQK7Sw1\u0026E\u003eS", - "admin_ssh_key": [], - "admin_username": "lenape", - "allow_extension_operations": true, - "availability_set_id": "", - "boot_diagnostics": [], - "bypass_platform_safety_checks_on_user_schedule_enabled": false, - "capacity_reservation_group_id": "", - "computer_name": "huitzilopochtli", - "custom_data": null, - "dedicated_host_group_id": "", - "dedicated_host_id": "", - "disable_password_authentication": false, - "disk_controller_type": "", - "edge_zone": "", - "encryption_at_host_enabled": false, - "eviction_policy": "", - "extensions_time_budget": "PT1H30M", - "gallery_application": [], - "id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/muscogee-rg/providers/Microsoft.Compute/virtualMachines/Huitzilopochtli", - "identity": [], - "license_type": "", - "location": "eastus2", - "max_bid_price": -1, - "name": "Huitzilopochtli", - "network_interface_ids": [ - "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/muscogee-rg/providers/Microsoft.Network/networkInterfaces/Huitzilopochtli-nic" - ], - "os_disk": [ - { - "caching": "ReadWrite", - "diff_disk_settings": [], - "disk_encryption_set_id": "", - "disk_size_gb": 30, - "name": "Huitzilopochtli_disk1_7610ae095fbd478ea8e193744f2d7fae", - "secure_vm_disk_encryption_set_id": "", - "security_encryption_type": "", - "storage_account_type": "Standard_LRS", - "write_accelerator_enabled": false - } - ], - "os_image_notification": [], - "patch_assessment_mode": "ImageDefault", - "patch_mode": "ImageDefault", - "plan": [], - "platform_fault_domain": -1, - "priority": "Regular", - "private_ip_address": "10.0.1.4", - "private_ip_addresses": [ - "10.0.1.4" - ], - "provision_vm_agent": true, - "proximity_placement_group_id": "", - "public_ip_address": "40.75.84.14", - "public_ip_addresses": [ - "40.75.84.14" - ], - "reboot_setting": "", - "resource_group_name": "muscogee-rg", - "secret": [], - "secure_boot_enabled": false, - "size": "Standard_B1ls", - "source_image_id": "", - "source_image_reference": [ - { - "offer": "UbuntuServer", - "publisher": "Canonical", - "sku": "18.04-LTS", - "version": "latest" - } - ], - "tags": null, - "termination_notification": null, - "timeouts": null, - "user_data": "", - "virtual_machine_id": "57908878-e487-469a-adc5-3d4fe9cc68a3", - "virtual_machine_scale_set_id": "", - "vm_agent_platform_updates_enabled": false, - "vtpm_enabled": false, - "zone": "" - }, - "sensitive_attributes": [ - [ - { - "type": "get_attr", - "value": "admin_password" - } - ], - [ - { - "type": "get_attr", - "value": "custom_data" - } - ] - ], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoyNzAwMDAwMDAwMDAwLCJkZWxldGUiOjI3MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjoyNzAwMDAwMDAwMDAwfX0=", - "dependencies": [ - "azurerm_key_vault.kv", - "azurerm_key_vault_secret.admin_password_secret", - "azurerm_network_interface.nic_eastus2", - "azurerm_public_ip.public_ip_eastus2", - "azurerm_resource_group.rg_eastus2", - "azurerm_subnet.subnet", - "azurerm_virtual_network.vnet", - "data.azurerm_client_config.current", - "random_password.admin_password", - "random_string.kv_suffix" - ] - } - ] - }, - { - "mode": "managed", - "type": "azurerm_linux_virtual_machine", - "name": "vm_pachamama", - "provider": "provider[\"registry.terraform.io/hashicorp/azurerm\"]", - "instances": [ - { - "schema_version": 0, - "attributes": { - "additional_capabilities": [], - "admin_password": "-tv1k#:*pqQK7Sw1\u0026E\u003eS", - "admin_ssh_key": [], - "admin_username": "lenape", - "allow_extension_operations": true, - "availability_set_id": "", - "boot_diagnostics": [], - "bypass_platform_safety_checks_on_user_schedule_enabled": false, - "capacity_reservation_group_id": "", - "computer_name": "pachamama", - "custom_data": null, - "dedicated_host_group_id": "", - "dedicated_host_id": "", - "disable_password_authentication": false, - "disk_controller_type": "", - "edge_zone": "", - "encryption_at_host_enabled": false, - "eviction_policy": "", - "extensions_time_budget": "PT1H30M", - "gallery_application": [], - "id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/muscogee-rg/providers/Microsoft.Compute/virtualMachines/Pachamama", - "identity": [], - "license_type": "", - "location": "eastus2", - "max_bid_price": -1, - "name": "Pachamama", - "network_interface_ids": [ - "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/muscogee-rg/providers/Microsoft.Network/networkInterfaces/Pachamama-nic" - ], - "os_disk": [ - { - "caching": "ReadWrite", - "diff_disk_settings": [], - "disk_encryption_set_id": "", - "disk_size_gb": 30, - "name": "Pachamama_disk1_d4f8e0235c9745c499b9dd46039abaca", - "secure_vm_disk_encryption_set_id": "", - "security_encryption_type": "", - "storage_account_type": "Standard_LRS", - "write_accelerator_enabled": false - } - ], - "os_image_notification": [], - "patch_assessment_mode": "ImageDefault", - "patch_mode": "ImageDefault", - "plan": [], - "platform_fault_domain": -1, - "priority": "Regular", - "private_ip_address": "10.0.1.5", - "private_ip_addresses": [ - "10.0.1.5" - ], - "provision_vm_agent": true, - "proximity_placement_group_id": "", - "public_ip_address": "40.75.84.15", - "public_ip_addresses": [ - "40.75.84.15" - ], - "reboot_setting": "", - "resource_group_name": "muscogee-rg", - "secret": [], - "secure_boot_enabled": false, - "size": "Standard_B1ls", - "source_image_id": "", - "source_image_reference": [ - { - "offer": "UbuntuServer", - "publisher": "Canonical", - "sku": "18.04-LTS", - "version": "latest" - } - ], - "tags": null, - "termination_notification": null, - "timeouts": null, - "user_data": "", - "virtual_machine_id": "f24a3689-6d62-4329-86e9-a18e44e95634", - "virtual_machine_scale_set_id": "", - "vm_agent_platform_updates_enabled": false, - "vtpm_enabled": false, - "zone": "" - }, - "sensitive_attributes": [ - [ - { - "type": "get_attr", - "value": "custom_data" - } - ], - [ - { - "type": "get_attr", - "value": "admin_password" - } - ] - ], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoyNzAwMDAwMDAwMDAwLCJkZWxldGUiOjI3MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjoyNzAwMDAwMDAwMDAwfX0=", - "dependencies": [ - "azurerm_key_vault.kv", - "azurerm_key_vault_secret.admin_password_secret", - "azurerm_network_interface.pachamama_nic", - "azurerm_public_ip.pachamama_pip", - "azurerm_resource_group.rg_eastus2", - "azurerm_subnet.subnet", - "azurerm_virtual_network.vnet", - "data.azurerm_client_config.current", - "random_password.admin_password", - "random_string.kv_suffix" - ] - } - ] - }, - { - "mode": "managed", - "type": "azurerm_network_interface", - "name": "nic_centralus", - "provider": "provider[\"registry.terraform.io/hashicorp/azurerm\"]", - "instances": [ - { - "index_key": 0, - "schema_version": 0, - "attributes": { - "accelerated_networking_enabled": false, - "applied_dns_servers": [], - "auxiliary_mode": "", - "auxiliary_sku": "", - "dns_servers": [], - "edge_zone": "", - "enable_accelerated_networking": false, - "enable_ip_forwarding": false, - "id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/cherokee-rg/providers/Microsoft.Network/networkInterfaces/Viracocha-nic", - "internal_dns_name_label": "", - "internal_domain_name_suffix": "rkeelvwzmd0u5jxtnxktm3ctkg.gx.internal.cloudapp.net", - "ip_configuration": [ - { - "gateway_load_balancer_frontend_ip_configuration_id": "", - "name": "internal", - "primary": true, - "private_ip_address": "10.2.1.5", - "private_ip_address_allocation": "Dynamic", - "private_ip_address_version": "IPv4", - "public_ip_address_id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/cherokee-rg/providers/Microsoft.Network/publicIPAddresses/Viracocha-pip", - "subnet_id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/cherokee-rg/providers/Microsoft.Network/virtualNetworks/Aztec-vnet-centralus/subnets/default" - } - ], - "ip_forwarding_enabled": false, - "location": "centralus", - "mac_address": "", - "name": "Viracocha-nic", - "private_ip_address": "10.2.1.5", - "private_ip_addresses": [ - "10.2.1.5" - ], - "resource_group_name": "cherokee-rg", - "tags": null, - "timeouts": null, - "virtual_machine_id": "" - }, - "sensitive_attributes": [], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjoxODAwMDAwMDAwMDAwfX0=", - "dependencies": [ - "azurerm_public_ip.public_ip_centralus", - "azurerm_resource_group.rg_centralus", - "azurerm_subnet.subnet_centralus", - "azurerm_virtual_network.vnet_centralus" - ] - }, - { - "index_key": 1, - "schema_version": 0, - "attributes": { - "accelerated_networking_enabled": false, - "applied_dns_servers": [], - "auxiliary_mode": "", - "auxiliary_sku": "", - "dns_servers": [], - "edge_zone": "", - "enable_accelerated_networking": false, - "enable_ip_forwarding": false, - "id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/cherokee-rg/providers/Microsoft.Network/networkInterfaces/Inti-nic", - "internal_dns_name_label": "", - "internal_domain_name_suffix": "rkeelvwzmd0u5jxtnxktm3ctkg.gx.internal.cloudapp.net", - "ip_configuration": [ - { - "gateway_load_balancer_frontend_ip_configuration_id": "", - "name": "internal", - "primary": true, - "private_ip_address": "10.2.1.4", - "private_ip_address_allocation": "Dynamic", - "private_ip_address_version": "IPv4", - "public_ip_address_id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/cherokee-rg/providers/Microsoft.Network/publicIPAddresses/Inti-pip", - "subnet_id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/cherokee-rg/providers/Microsoft.Network/virtualNetworks/Aztec-vnet-centralus/subnets/default" - } - ], - "ip_forwarding_enabled": false, - "location": "centralus", - "mac_address": "", - "name": "Inti-nic", - "private_ip_address": "10.2.1.4", - "private_ip_addresses": [ - "10.2.1.4" - ], - "resource_group_name": "cherokee-rg", - "tags": null, - "timeouts": null, - "virtual_machine_id": "" - }, - "sensitive_attributes": [], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjoxODAwMDAwMDAwMDAwfX0=", - "dependencies": [ - "azurerm_public_ip.public_ip_centralus", - "azurerm_resource_group.rg_centralus", - "azurerm_subnet.subnet_centralus", - "azurerm_virtual_network.vnet_centralus" - ] - } - ] - }, - { - "mode": "managed", - "type": "azurerm_network_interface", - "name": "nic_eastus2", - "provider": "provider[\"registry.terraform.io/hashicorp/azurerm\"]", - "instances": [ - { - "index_key": 0, - "schema_version": 0, - "attributes": { - "accelerated_networking_enabled": false, - "applied_dns_servers": [], - "auxiliary_mode": "", - "auxiliary_sku": "", - "dns_servers": [], - "edge_zone": "", - "enable_accelerated_networking": false, - "enable_ip_forwarding": false, - "id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/muscogee-rg/providers/Microsoft.Network/networkInterfaces/Huitzilopochtli-nic", - "internal_dns_name_label": "", - "internal_domain_name_suffix": "rqr0hzt1js4urcyc2jtndnkgug.cx.internal.cloudapp.net", - "ip_configuration": [ - { - "gateway_load_balancer_frontend_ip_configuration_id": "", - "name": "internal", - "primary": true, - "private_ip_address": "10.0.1.4", - "private_ip_address_allocation": "Dynamic", - "private_ip_address_version": "IPv4", - "public_ip_address_id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/muscogee-rg/providers/Microsoft.Network/publicIPAddresses/Huitzilopochtli-pip", - "subnet_id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/muscogee-rg/providers/Microsoft.Network/virtualNetworks/Aztec-vnet/subnets/default" - } - ], - "ip_forwarding_enabled": false, - "location": "eastus2", - "mac_address": "", - "name": "Huitzilopochtli-nic", - "private_ip_address": "10.0.1.4", - "private_ip_addresses": [ - "10.0.1.4" - ], - "resource_group_name": "muscogee-rg", - "tags": null, - "timeouts": null, - "virtual_machine_id": "" - }, - "sensitive_attributes": [], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjoxODAwMDAwMDAwMDAwfX0=", - "dependencies": [ - "azurerm_public_ip.public_ip_eastus2", - "azurerm_resource_group.rg_eastus2", - "azurerm_subnet.subnet", - "azurerm_virtual_network.vnet" - ] - } - ] - }, - { - "mode": "managed", - "type": "azurerm_network_interface", - "name": "pachamama_nic", - "provider": "provider[\"registry.terraform.io/hashicorp/azurerm\"]", - "instances": [ - { - "schema_version": 0, - "attributes": { - "accelerated_networking_enabled": false, - "applied_dns_servers": [], - "auxiliary_mode": "", - "auxiliary_sku": "", - "dns_servers": [], - "edge_zone": "", - "enable_accelerated_networking": false, - "enable_ip_forwarding": false, - "id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/muscogee-rg/providers/Microsoft.Network/networkInterfaces/Pachamama-nic", - "internal_dns_name_label": "", - "internal_domain_name_suffix": "rqr0hzt1js4urcyc2jtndnkgug.cx.internal.cloudapp.net", - "ip_configuration": [ - { - "gateway_load_balancer_frontend_ip_configuration_id": "", - "name": "internal", - "primary": true, - "private_ip_address": "10.0.1.5", - "private_ip_address_allocation": "Dynamic", - "private_ip_address_version": "IPv4", - "public_ip_address_id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/muscogee-rg/providers/Microsoft.Network/publicIPAddresses/Pachamama-pip", - "subnet_id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/muscogee-rg/providers/Microsoft.Network/virtualNetworks/Aztec-vnet/subnets/default" - } - ], - "ip_forwarding_enabled": false, - "location": "eastus2", - "mac_address": "", - "name": "Pachamama-nic", - "private_ip_address": "10.0.1.5", - "private_ip_addresses": [ - "10.0.1.5" - ], - "resource_group_name": "muscogee-rg", - "tags": null, - "timeouts": null, - "virtual_machine_id": "" - }, - "sensitive_attributes": [], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjoxODAwMDAwMDAwMDAwfX0=", - "dependencies": [ - "azurerm_public_ip.pachamama_pip", - "azurerm_resource_group.rg_eastus2", - "azurerm_subnet.subnet", - "azurerm_virtual_network.vnet" - ] - } - ] - }, - { - "mode": "managed", - "type": "azurerm_network_interface", - "name": "quetzalcoatl_nic", - "provider": "provider[\"registry.terraform.io/hashicorp/azurerm\"]", - "instances": [ - { - "schema_version": 0, - "attributes": { - "accelerated_networking_enabled": false, - "applied_dns_servers": [], - "auxiliary_mode": "", - "auxiliary_sku": "", - "dns_servers": [], - "edge_zone": "", - "enable_accelerated_networking": false, - "enable_ip_forwarding": false, - "id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/sioux-rg/providers/Microsoft.Network/networkInterfaces/Quetzalcoatl-nic-westus2", - "internal_dns_name_label": "", - "internal_domain_name_suffix": "edgdy45jnveu5aamg1pm2fbi0g.xx.internal.cloudapp.net", - "ip_configuration": [ - { - "gateway_load_balancer_frontend_ip_configuration_id": "", - "name": "internal", - "primary": true, - "private_ip_address": "10.1.1.4", - "private_ip_address_allocation": "Dynamic", - "private_ip_address_version": "IPv4", - "public_ip_address_id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/sioux-rg/providers/Microsoft.Network/publicIPAddresses/Quetzalcoatl-pip-westus2", - "subnet_id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/sioux-rg/providers/Microsoft.Network/virtualNetworks/Aztec-vnet-westus2/subnets/default" - } - ], - "ip_forwarding_enabled": false, - "location": "westus2", - "mac_address": "", - "name": "Quetzalcoatl-nic-westus2", - "private_ip_address": "10.1.1.4", - "private_ip_addresses": [ - "10.1.1.4" - ], - "resource_group_name": "sioux-rg", - "tags": null, - "timeouts": null, - "virtual_machine_id": "" - }, - "sensitive_attributes": [], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjoxODAwMDAwMDAwMDAwfX0=", - "dependencies": [ - "azurerm_public_ip.quetzalcoatl_pip", - "azurerm_resource_group.rg_westus2", - "azurerm_subnet.subnet_westus2", - "azurerm_virtual_network.vnet_westus2" - ] - } - ] - }, - { - "mode": "managed", - "type": "azurerm_network_interface_security_group_association", - "name": "nic_nsg_association_centralus", - "provider": "provider[\"registry.terraform.io/hashicorp/azurerm\"]", - "instances": [ - { - "index_key": 0, - "schema_version": 0, - "attributes": { - "id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/cherokee-rg/providers/Microsoft.Network/networkInterfaces/Viracocha-nic|/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/cherokee-rg/providers/Microsoft.Network/networkSecurityGroups/Aztec-nsg-centralus", - "network_interface_id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/cherokee-rg/providers/Microsoft.Network/networkInterfaces/Viracocha-nic", - "network_security_group_id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/cherokee-rg/providers/Microsoft.Network/networkSecurityGroups/Aztec-nsg-centralus", - "timeouts": null - }, - "sensitive_attributes": [], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMH19", - "dependencies": [ - "azurerm_network_interface.nic_centralus", - "azurerm_network_security_group.nsg_centralus", - "azurerm_public_ip.public_ip_centralus", - "azurerm_resource_group.rg_centralus", - "azurerm_subnet.subnet_centralus", - "azurerm_virtual_network.vnet_centralus" - ] - }, - { - "index_key": 1, - "schema_version": 0, - "attributes": { - "id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/cherokee-rg/providers/Microsoft.Network/networkInterfaces/Inti-nic|/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/cherokee-rg/providers/Microsoft.Network/networkSecurityGroups/Aztec-nsg-centralus", - "network_interface_id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/cherokee-rg/providers/Microsoft.Network/networkInterfaces/Inti-nic", - "network_security_group_id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/cherokee-rg/providers/Microsoft.Network/networkSecurityGroups/Aztec-nsg-centralus", - "timeouts": null - }, - "sensitive_attributes": [], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMH19", - "dependencies": [ - "azurerm_network_interface.nic_centralus", - "azurerm_network_security_group.nsg_centralus", - "azurerm_public_ip.public_ip_centralus", - "azurerm_resource_group.rg_centralus", - "azurerm_subnet.subnet_centralus", - "azurerm_virtual_network.vnet_centralus" - ] - } - ] - }, - { - "mode": "managed", - "type": "azurerm_network_interface_security_group_association", - "name": "nic_nsg_association_eastus2", - "provider": "provider[\"registry.terraform.io/hashicorp/azurerm\"]", - "instances": [ - { - "schema_version": 0, - "attributes": { - "id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/muscogee-rg/providers/Microsoft.Network/networkInterfaces/Huitzilopochtli-nic|/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/muscogee-rg/providers/Microsoft.Network/networkSecurityGroups/Aztec-nsg", - "network_interface_id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/muscogee-rg/providers/Microsoft.Network/networkInterfaces/Huitzilopochtli-nic", - "network_security_group_id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/muscogee-rg/providers/Microsoft.Network/networkSecurityGroups/Aztec-nsg", - "timeouts": null - }, - "sensitive_attributes": [], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMH19", - "dependencies": [ - "azurerm_network_interface.nic_eastus2", - "azurerm_network_security_group.nsg", - "azurerm_public_ip.public_ip_eastus2", - "azurerm_resource_group.rg_eastus2", - "azurerm_subnet.subnet", - "azurerm_virtual_network.vnet" - ] - } - ] - }, - { - "mode": "managed", - "type": "azurerm_network_interface_security_group_association", - "name": "pachamama_nic_nsg_association", - "provider": "provider[\"registry.terraform.io/hashicorp/azurerm\"]", - "instances": [ - { - "schema_version": 0, - "attributes": { - "id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/muscogee-rg/providers/Microsoft.Network/networkInterfaces/Pachamama-nic|/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/muscogee-rg/providers/Microsoft.Network/networkSecurityGroups/Aztec-nsg", - "network_interface_id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/muscogee-rg/providers/Microsoft.Network/networkInterfaces/Pachamama-nic", - "network_security_group_id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/muscogee-rg/providers/Microsoft.Network/networkSecurityGroups/Aztec-nsg", - "timeouts": null - }, - "sensitive_attributes": [], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMH19", - "dependencies": [ - "azurerm_network_interface.pachamama_nic", - "azurerm_network_security_group.nsg", - "azurerm_public_ip.pachamama_pip", - "azurerm_resource_group.rg_eastus2", - "azurerm_subnet.subnet", - "azurerm_virtual_network.vnet" - ] - } - ] - }, - { - "mode": "managed", - "type": "azurerm_network_interface_security_group_association", - "name": "quetzalcoatl_nic_nsg_association", - "provider": "provider[\"registry.terraform.io/hashicorp/azurerm\"]", - "instances": [ - { - "schema_version": 0, - "attributes": { - "id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/sioux-rg/providers/Microsoft.Network/networkInterfaces/Quetzalcoatl-nic-westus2|/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/sioux-rg/providers/Microsoft.Network/networkSecurityGroups/Aztec-nsg-westus2", - "network_interface_id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/sioux-rg/providers/Microsoft.Network/networkInterfaces/Quetzalcoatl-nic-westus2", - "network_security_group_id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/sioux-rg/providers/Microsoft.Network/networkSecurityGroups/Aztec-nsg-westus2", - "timeouts": null - }, - "sensitive_attributes": [], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMH19", - "dependencies": [ - "azurerm_network_interface.quetzalcoatl_nic", - "azurerm_network_security_group.nsg_westus2", - "azurerm_public_ip.quetzalcoatl_pip", - "azurerm_resource_group.rg_westus2", - "azurerm_subnet.subnet_westus2", - "azurerm_virtual_network.vnet_westus2" - ] - } - ] - }, - { - "mode": "managed", - "type": "azurerm_network_security_group", - "name": "nsg", - "provider": "provider[\"registry.terraform.io/hashicorp/azurerm\"]", - "instances": [ - { - "schema_version": 0, - "attributes": { - "id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/muscogee-rg/providers/Microsoft.Network/networkSecurityGroups/Aztec-nsg", - "location": "eastus2", - "name": "Aztec-nsg", - "resource_group_name": "muscogee-rg", - "security_rule": [ - { - "access": "Allow", - "description": "", - "destination_address_prefix": "*", - "destination_address_prefixes": [], - "destination_application_security_group_ids": [], - "destination_port_range": "22", - "destination_port_ranges": [], - "direction": "Inbound", - "name": "AllowSSH", - "priority": 100, - "protocol": "Tcp", - "source_address_prefix": "*", - "source_address_prefixes": [], - "source_application_security_group_ids": [], - "source_port_range": "*", - "source_port_ranges": [] - } - ], - "tags": null, - "timeouts": null - }, - "sensitive_attributes": [], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjoxODAwMDAwMDAwMDAwfX0=", - "dependencies": [ - "azurerm_resource_group.rg_eastus2" - ] - } - ] - }, - { - "mode": "managed", - "type": "azurerm_network_security_group", - "name": "nsg_centralus", - "provider": "provider[\"registry.terraform.io/hashicorp/azurerm\"]", - "instances": [ - { - "schema_version": 0, - "attributes": { - "id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/cherokee-rg/providers/Microsoft.Network/networkSecurityGroups/Aztec-nsg-centralus", - "location": "centralus", - "name": "Aztec-nsg-centralus", - "resource_group_name": "cherokee-rg", - "security_rule": [ - { - "access": "Allow", - "description": "", - "destination_address_prefix": "*", - "destination_address_prefixes": [], - "destination_application_security_group_ids": [], - "destination_port_range": "22", - "destination_port_ranges": [], - "direction": "Inbound", - "name": "AllowSSH", - "priority": 100, - "protocol": "Tcp", - "source_address_prefix": "*", - "source_address_prefixes": [], - "source_application_security_group_ids": [], - "source_port_range": "*", - "source_port_ranges": [] - } - ], - "tags": null, - "timeouts": null - }, - "sensitive_attributes": [], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjoxODAwMDAwMDAwMDAwfX0=", - "dependencies": [ - "azurerm_resource_group.rg_centralus" - ] - } - ] - }, - { - "mode": "managed", - "type": "azurerm_network_security_group", - "name": "nsg_westus2", - "provider": "provider[\"registry.terraform.io/hashicorp/azurerm\"]", - "instances": [ - { - "schema_version": 0, - "attributes": { - "id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/sioux-rg/providers/Microsoft.Network/networkSecurityGroups/Aztec-nsg-westus2", - "location": "westus2", - "name": "Aztec-nsg-westus2", - "resource_group_name": "sioux-rg", - "security_rule": [ - { - "access": "Allow", - "description": "", - "destination_address_prefix": "*", - "destination_address_prefixes": [], - "destination_application_security_group_ids": [], - "destination_port_range": "22", - "destination_port_ranges": [], - "direction": "Inbound", - "name": "AllowSSH", - "priority": 100, - "protocol": "Tcp", - "source_address_prefix": "*", - "source_address_prefixes": [], - "source_application_security_group_ids": [], - "source_port_range": "*", - "source_port_ranges": [] - } - ], - "tags": null, - "timeouts": null - }, - "sensitive_attributes": [], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjoxODAwMDAwMDAwMDAwfX0=", - "dependencies": [ - "azurerm_resource_group.rg_westus2" - ] - } - ] - }, - { - "mode": "managed", - "type": "azurerm_public_ip", - "name": "pachamama_pip", - "provider": "provider[\"registry.terraform.io/hashicorp/azurerm\"]", - "instances": [ - { - "schema_version": 0, - "attributes": { - "allocation_method": "Dynamic", - "ddos_protection_mode": "VirtualNetworkInherited", - "ddos_protection_plan_id": null, - "domain_name_label": null, - "edge_zone": "", - "fqdn": null, - "id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/muscogee-rg/providers/Microsoft.Network/publicIPAddresses/Pachamama-pip", - "idle_timeout_in_minutes": 4, - "ip_address": "", - "ip_tags": null, - "ip_version": "IPv4", - "location": "eastus2", - "name": "Pachamama-pip", - "public_ip_prefix_id": null, - "resource_group_name": "muscogee-rg", - "reverse_fqdn": null, - "sku": "Basic", - "sku_tier": "Regional", - "tags": null, - "timeouts": null, - "zones": null - }, - "sensitive_attributes": [], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjoxODAwMDAwMDAwMDAwfX0=", - "dependencies": [ - "azurerm_resource_group.rg_eastus2" - ] - } - ] - }, - { - "mode": "managed", - "type": "azurerm_public_ip", - "name": "public_ip_centralus", - "provider": "provider[\"registry.terraform.io/hashicorp/azurerm\"]", - "instances": [ - { - "index_key": 0, - "schema_version": 0, - "attributes": { - "allocation_method": "Dynamic", - "ddos_protection_mode": "VirtualNetworkInherited", - "ddos_protection_plan_id": null, - "domain_name_label": null, - "edge_zone": "", - "fqdn": null, - "id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/cherokee-rg/providers/Microsoft.Network/publicIPAddresses/Viracocha-pip", - "idle_timeout_in_minutes": 4, - "ip_address": "", - "ip_tags": null, - "ip_version": "IPv4", - "location": "centralus", - "name": "Viracocha-pip", - "public_ip_prefix_id": null, - "resource_group_name": "cherokee-rg", - "reverse_fqdn": null, - "sku": "Basic", - "sku_tier": "Regional", - "tags": null, - "timeouts": null, - "zones": null - }, - "sensitive_attributes": [], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjoxODAwMDAwMDAwMDAwfX0=", - "dependencies": [ - "azurerm_resource_group.rg_centralus" - ] - }, - { - "index_key": 1, - "schema_version": 0, - "attributes": { - "allocation_method": "Dynamic", - "ddos_protection_mode": "VirtualNetworkInherited", - "ddos_protection_plan_id": null, - "domain_name_label": null, - "edge_zone": "", - "fqdn": null, - "id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/cherokee-rg/providers/Microsoft.Network/publicIPAddresses/Inti-pip", - "idle_timeout_in_minutes": 4, - "ip_address": "", - "ip_tags": null, - "ip_version": "IPv4", - "location": "centralus", - "name": "Inti-pip", - "public_ip_prefix_id": null, - "resource_group_name": "cherokee-rg", - "reverse_fqdn": null, - "sku": "Basic", - "sku_tier": "Regional", - "tags": null, - "timeouts": null, - "zones": null - }, - "sensitive_attributes": [], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjoxODAwMDAwMDAwMDAwfX0=", - "dependencies": [ - "azurerm_resource_group.rg_centralus" - ] - } - ] - }, - { - "mode": "managed", - "type": "azurerm_public_ip", - "name": "public_ip_eastus2", - "provider": "provider[\"registry.terraform.io/hashicorp/azurerm\"]", - "instances": [ - { - "index_key": 0, - "schema_version": 0, - "attributes": { - "allocation_method": "Dynamic", - "ddos_protection_mode": "VirtualNetworkInherited", - "ddos_protection_plan_id": null, - "domain_name_label": null, - "edge_zone": "", - "fqdn": null, - "id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/muscogee-rg/providers/Microsoft.Network/publicIPAddresses/Huitzilopochtli-pip", - "idle_timeout_in_minutes": 4, - "ip_address": "", - "ip_tags": null, - "ip_version": "IPv4", - "location": "eastus2", - "name": "Huitzilopochtli-pip", - "public_ip_prefix_id": null, - "resource_group_name": "muscogee-rg", - "reverse_fqdn": null, - "sku": "Basic", - "sku_tier": "Regional", - "tags": null, - "timeouts": null, - "zones": null - }, - "sensitive_attributes": [], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjoxODAwMDAwMDAwMDAwfX0=", - "dependencies": [ - "azurerm_resource_group.rg_eastus2" - ] - } - ] - }, - { - "mode": "managed", - "type": "azurerm_public_ip", - "name": "quetzalcoatl_pip", - "provider": "provider[\"registry.terraform.io/hashicorp/azurerm\"]", - "instances": [ - { - "schema_version": 0, - "attributes": { - "allocation_method": "Dynamic", - "ddos_protection_mode": "VirtualNetworkInherited", - "ddos_protection_plan_id": null, - "domain_name_label": null, - "edge_zone": "", - "fqdn": null, - "id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/sioux-rg/providers/Microsoft.Network/publicIPAddresses/Quetzalcoatl-pip-westus2", - "idle_timeout_in_minutes": 4, - "ip_address": "", - "ip_tags": null, - "ip_version": "IPv4", - "location": "westus2", - "name": "Quetzalcoatl-pip-westus2", - "public_ip_prefix_id": null, - "resource_group_name": "sioux-rg", - "reverse_fqdn": null, - "sku": "Basic", - "sku_tier": "Regional", - "tags": null, - "timeouts": null, - "zones": null - }, - "sensitive_attributes": [], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjoxODAwMDAwMDAwMDAwfX0=", - "dependencies": [ - "azurerm_resource_group.rg_westus2" - ] - } - ] - }, - { - "mode": "managed", - "type": "azurerm_resource_group", - "name": "rg_centralus", - "provider": "provider[\"registry.terraform.io/hashicorp/azurerm\"]", - "instances": [ - { - "schema_version": 0, - "attributes": { - "id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/cherokee-rg", - "location": "centralus", - "managed_by": "", - "name": "cherokee-rg", - "tags": null, - "timeouts": null - }, - "sensitive_attributes": [], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo1NDAwMDAwMDAwMDAwLCJkZWxldGUiOjU0MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjo1NDAwMDAwMDAwMDAwfX0=" - } - ] - }, - { - "mode": "managed", - "type": "azurerm_resource_group", - "name": "rg_eastus2", - "provider": "provider[\"registry.terraform.io/hashicorp/azurerm\"]", - "instances": [ - { - "schema_version": 0, - "attributes": { - "id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/muscogee-rg", - "location": "eastus2", - "managed_by": "", - "name": "muscogee-rg", - "tags": null, - "timeouts": null - }, - "sensitive_attributes": [], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo1NDAwMDAwMDAwMDAwLCJkZWxldGUiOjU0MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjo1NDAwMDAwMDAwMDAwfX0=" - } - ] - }, - { - "mode": "managed", - "type": "azurerm_resource_group", - "name": "rg_westus2", - "provider": "provider[\"registry.terraform.io/hashicorp/azurerm\"]", - "instances": [ - { - "schema_version": 0, - "attributes": { - "id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/sioux-rg", - "location": "westus2", - "managed_by": "", - "name": "sioux-rg", - "tags": null, - "timeouts": null - }, - "sensitive_attributes": [], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo1NDAwMDAwMDAwMDAwLCJkZWxldGUiOjU0MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjo1NDAwMDAwMDAwMDAwfX0=" - } - ] - }, - { - "mode": "managed", - "type": "azurerm_storage_account", - "name": "storage", - "provider": "provider[\"registry.terraform.io/hashicorp/azurerm\"]", - "instances": [ - { - "schema_version": 4, - "attributes": { - "access_tier": "Hot", - "account_kind": "StorageV2", - "account_replication_type": "LRS", - "account_tier": "Standard", - "allow_nested_items_to_be_public": true, - "allowed_copy_scope": "", - "azure_files_authentication": [], - "blob_properties": [ - { - "change_feed_enabled": false, - "change_feed_retention_in_days": 0, - "container_delete_retention_policy": [], - "cors_rule": [], - "default_service_version": "", - "delete_retention_policy": [], - "last_access_time_enabled": false, - "restore_policy": [], - "versioning_enabled": false - } - ], - "cross_tenant_replication_enabled": true, - "custom_domain": [], - "customer_managed_key": [], - "default_to_oauth_authentication": false, - "dns_endpoint_type": "Standard", - "edge_zone": "", - "enable_https_traffic_only": true, - "https_traffic_only_enabled": true, - "id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/muscogee-rg/providers/Microsoft.Storage/storageAccounts/povertypoint", - "identity": [], - "immutability_policy": [], - "infrastructure_encryption_enabled": false, - "is_hns_enabled": false, - "large_file_share_enabled": false, - "local_user_enabled": true, - "location": "eastus2", - "min_tls_version": "TLS1_2", - "name": "povertypoint", - "network_rules": [], - "nfsv3_enabled": false, - "primary_access_key": "5Y6xa7V95lTwO82Io/0+anZkECZx57QtOBCC6BLJMffMhpJjXRaDC+5StsCeLOaOH1f8w1+lOeOU+ASt2tpC3A==", - "primary_blob_connection_string": "DefaultEndpointsProtocol=https;BlobEndpoint=https://povertypoint.blob.core.windows.net/;AccountName=povertypoint;AccountKey=5Y6xa7V95lTwO82Io/0+anZkECZx57QtOBCC6BLJMffMhpJjXRaDC+5StsCeLOaOH1f8w1+lOeOU+ASt2tpC3A==", - "primary_blob_endpoint": "https://povertypoint.blob.core.windows.net/", - "primary_blob_host": "povertypoint.blob.core.windows.net", - "primary_blob_internet_endpoint": "", - "primary_blob_internet_host": "", - "primary_blob_microsoft_endpoint": "", - "primary_blob_microsoft_host": "", - "primary_connection_string": "DefaultEndpointsProtocol=https;AccountName=povertypoint;AccountKey=5Y6xa7V95lTwO82Io/0+anZkECZx57QtOBCC6BLJMffMhpJjXRaDC+5StsCeLOaOH1f8w1+lOeOU+ASt2tpC3A==;EndpointSuffix=core.windows.net", - "primary_dfs_endpoint": "https://povertypoint.dfs.core.windows.net/", - "primary_dfs_host": "povertypoint.dfs.core.windows.net", - "primary_dfs_internet_endpoint": "", - "primary_dfs_internet_host": "", - "primary_dfs_microsoft_endpoint": "", - "primary_dfs_microsoft_host": "", - "primary_file_endpoint": "https://povertypoint.file.core.windows.net/", - "primary_file_host": "povertypoint.file.core.windows.net", - "primary_file_internet_endpoint": "", - "primary_file_internet_host": "", - "primary_file_microsoft_endpoint": "", - "primary_file_microsoft_host": "", - "primary_location": "eastus2", - "primary_queue_endpoint": "https://povertypoint.queue.core.windows.net/", - "primary_queue_host": "povertypoint.queue.core.windows.net", - "primary_queue_microsoft_endpoint": "", - "primary_queue_microsoft_host": "", - "primary_table_endpoint": "https://povertypoint.table.core.windows.net/", - "primary_table_host": "povertypoint.table.core.windows.net", - "primary_table_microsoft_endpoint": "", - "primary_table_microsoft_host": "", - "primary_web_endpoint": "https://povertypoint.z20.web.core.windows.net/", - "primary_web_host": "povertypoint.z20.web.core.windows.net", - "primary_web_internet_endpoint": "", - "primary_web_internet_host": "", - "primary_web_microsoft_endpoint": "", - "primary_web_microsoft_host": "", - "public_network_access_enabled": true, - "queue_encryption_key_type": "Service", - "queue_properties": [ - { - "cors_rule": [], - "hour_metrics": [ - { - "enabled": false, - "include_apis": false, - "retention_policy_days": 0, - "version": "1.0" - } - ], - "logging": [ - { - "delete": false, - "read": false, - "retention_policy_days": 0, - "version": "1.0", - "write": false - } - ], - "minute_metrics": [ - { - "enabled": false, - "include_apis": false, - "retention_policy_days": 0, - "version": "1.0" - } - ] - } - ], - "resource_group_name": "muscogee-rg", - "routing": [], - "sas_policy": [], - "secondary_access_key": "Aziq3fplHccn26rCz88eaHgFzEhSNRAJRNb0T6H/CA14MpoPCdh16KL3nAAL/hHH0ECAtMyjtA/k+ASt6mTI3Q==", - "secondary_blob_connection_string": "", - "secondary_blob_endpoint": "", - "secondary_blob_host": "", - "secondary_blob_internet_endpoint": "", - "secondary_blob_internet_host": "", - "secondary_blob_microsoft_endpoint": "", - "secondary_blob_microsoft_host": "", - "secondary_connection_string": "DefaultEndpointsProtocol=https;AccountName=povertypoint;AccountKey=Aziq3fplHccn26rCz88eaHgFzEhSNRAJRNb0T6H/CA14MpoPCdh16KL3nAAL/hHH0ECAtMyjtA/k+ASt6mTI3Q==;EndpointSuffix=core.windows.net", - "secondary_dfs_endpoint": "", - "secondary_dfs_host": "", - "secondary_dfs_internet_endpoint": "", - "secondary_dfs_internet_host": "", - "secondary_dfs_microsoft_endpoint": "", - "secondary_dfs_microsoft_host": "", - "secondary_file_endpoint": "", - "secondary_file_host": "", - "secondary_file_internet_endpoint": "", - "secondary_file_internet_host": "", - "secondary_file_microsoft_endpoint": "", - "secondary_file_microsoft_host": "", - "secondary_location": "", - "secondary_queue_endpoint": "", - "secondary_queue_host": "", - "secondary_queue_microsoft_endpoint": "", - "secondary_queue_microsoft_host": "", - "secondary_table_endpoint": "", - "secondary_table_host": "", - "secondary_table_microsoft_endpoint": "", - "secondary_table_microsoft_host": "", - "secondary_web_endpoint": "", - "secondary_web_host": "", - "secondary_web_internet_endpoint": "", - "secondary_web_internet_host": "", - "secondary_web_microsoft_endpoint": "", - "secondary_web_microsoft_host": "", - "sftp_enabled": false, - "share_properties": [ - { - "cors_rule": [], - "retention_policy": [ - { - "days": 7 - } - ], - "smb": [] - } - ], - "shared_access_key_enabled": true, - "static_website": [], - "table_encryption_key_type": "Service", - "tags": null, - "timeouts": null - }, - "sensitive_attributes": [ - [ - { - "type": "get_attr", - "value": "secondary_blob_connection_string" - } - ], - [ - { - "type": "get_attr", - "value": "primary_access_key" - } - ], - [ - { - "type": "get_attr", - "value": "secondary_connection_string" - } - ], - [ - { - "type": "get_attr", - "value": "secondary_access_key" - } - ], - [ - { - "type": "get_attr", - "value": "primary_connection_string" - } - ], - [ - { - "type": "get_attr", - "value": "primary_blob_connection_string" - } - ] - ], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjozNjAwMDAwMDAwMDAwLCJkZWxldGUiOjM2MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjozNjAwMDAwMDAwMDAwfSwic2NoZW1hX3ZlcnNpb24iOiI0In0=", - "dependencies": [ - "azurerm_resource_group.rg_eastus2" - ] - } - ] - }, - { - "mode": "managed", - "type": "azurerm_storage_container", - "name": "tfstate_container", - "provider": "provider[\"registry.terraform.io/hashicorp/azurerm\"]", - "instances": [ - { - "schema_version": 1, - "attributes": { - "container_access_type": "private", - "default_encryption_scope": "$account-encryption-key", - "encryption_scope_override_enabled": true, - "has_immutability_policy": false, - "has_legal_hold": false, - "id": "https://povertypoint.blob.core.windows.net/tfstate", - "metadata": {}, - "name": "tfstate", - "resource_manager_id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/muscogee-rg/providers/Microsoft.Storage/storageAccounts/povertypoint/blobServices/default/containers/tfstate", - "storage_account_name": "povertypoint", - "timeouts": null - }, - "sensitive_attributes": [], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjoxODAwMDAwMDAwMDAwfSwic2NoZW1hX3ZlcnNpb24iOiIxIn0=", - "dependencies": [ - "azurerm_resource_group.rg_eastus2", - "azurerm_storage_account.storage" - ] - } - ] - }, - { - "mode": "managed", - "type": "azurerm_subnet", - "name": "subnet", - "provider": "provider[\"registry.terraform.io/hashicorp/azurerm\"]", - "instances": [ - { - "schema_version": 0, - "attributes": { - "address_prefixes": [ - "10.0.1.0/24" - ], - "default_outbound_access_enabled": true, - "delegation": [], - "enforce_private_link_endpoint_network_policies": false, - "enforce_private_link_service_network_policies": false, - "id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/muscogee-rg/providers/Microsoft.Network/virtualNetworks/Aztec-vnet/subnets/default", - "name": "default", - "private_endpoint_network_policies": "Enabled", - "private_endpoint_network_policies_enabled": true, - "private_link_service_network_policies_enabled": true, - "resource_group_name": "muscogee-rg", - "service_endpoint_policy_ids": null, - "service_endpoints": null, - "timeouts": null, - "virtual_network_name": "Aztec-vnet" - }, - "sensitive_attributes": [], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjoxODAwMDAwMDAwMDAwfX0=", - "dependencies": [ - "azurerm_resource_group.rg_eastus2", - "azurerm_virtual_network.vnet" - ] - } - ] - }, - { - "mode": "managed", - "type": "azurerm_subnet", - "name": "subnet_centralus", - "provider": "provider[\"registry.terraform.io/hashicorp/azurerm\"]", - "instances": [ - { - "schema_version": 0, - "attributes": { - "address_prefixes": [ - "10.2.1.0/24" - ], - "default_outbound_access_enabled": true, - "delegation": [], - "enforce_private_link_endpoint_network_policies": false, - "enforce_private_link_service_network_policies": false, - "id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/cherokee-rg/providers/Microsoft.Network/virtualNetworks/Aztec-vnet-centralus/subnets/default", - "name": "default", - "private_endpoint_network_policies": "Enabled", - "private_endpoint_network_policies_enabled": true, - "private_link_service_network_policies_enabled": true, - "resource_group_name": "cherokee-rg", - "service_endpoint_policy_ids": null, - "service_endpoints": null, - "timeouts": null, - "virtual_network_name": "Aztec-vnet-centralus" - }, - "sensitive_attributes": [], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjoxODAwMDAwMDAwMDAwfX0=", - "dependencies": [ - "azurerm_resource_group.rg_centralus", - "azurerm_virtual_network.vnet_centralus" - ] - } - ] - }, - { - "mode": "managed", - "type": "azurerm_subnet", - "name": "subnet_westus2", - "provider": "provider[\"registry.terraform.io/hashicorp/azurerm\"]", - "instances": [ - { - "schema_version": 0, - "attributes": { - "address_prefixes": [ - "10.1.1.0/24" - ], - "default_outbound_access_enabled": true, - "delegation": [], - "enforce_private_link_endpoint_network_policies": false, - "enforce_private_link_service_network_policies": false, - "id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/sioux-rg/providers/Microsoft.Network/virtualNetworks/Aztec-vnet-westus2/subnets/default", - "name": "default", - "private_endpoint_network_policies": "Enabled", - "private_endpoint_network_policies_enabled": true, - "private_link_service_network_policies_enabled": true, - "resource_group_name": "sioux-rg", - "service_endpoint_policy_ids": null, - "service_endpoints": null, - "timeouts": null, - "virtual_network_name": "Aztec-vnet-westus2" - }, - "sensitive_attributes": [], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjoxODAwMDAwMDAwMDAwfX0=", - "dependencies": [ - "azurerm_resource_group.rg_westus2", - "azurerm_virtual_network.vnet_westus2" - ] - } - ] - }, - { - "mode": "managed", - "type": "azurerm_virtual_network", - "name": "vnet", - "provider": "provider[\"registry.terraform.io/hashicorp/azurerm\"]", - "instances": [ - { - "schema_version": 0, - "attributes": { - "address_space": [ - "10.0.0.0/16" - ], - "bgp_community": "", - "ddos_protection_plan": [], - "dns_servers": [], - "edge_zone": "", - "encryption": [], - "flow_timeout_in_minutes": 0, - "guid": "e6a3238c-4c7b-48bd-8b02-e266d1b546a6", - "id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/muscogee-rg/providers/Microsoft.Network/virtualNetworks/Aztec-vnet", - "location": "eastus2", - "name": "Aztec-vnet", - "resource_group_name": "muscogee-rg", - "subnet": [], - "tags": null, - "timeouts": null - }, - "sensitive_attributes": [], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjoxODAwMDAwMDAwMDAwfX0=", - "dependencies": [ - "azurerm_resource_group.rg_eastus2" - ] - } - ] - }, - { - "mode": "managed", - "type": "azurerm_virtual_network", - "name": "vnet_centralus", - "provider": "provider[\"registry.terraform.io/hashicorp/azurerm\"]", - "instances": [ - { - "schema_version": 0, - "attributes": { - "address_space": [ - "10.2.0.0/16" - ], - "bgp_community": "", - "ddos_protection_plan": [], - "dns_servers": [], - "edge_zone": "", - "encryption": [], - "flow_timeout_in_minutes": 0, - "guid": "d645888a-60d9-4ff5-a6f3-6dd536745356", - "id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/cherokee-rg/providers/Microsoft.Network/virtualNetworks/Aztec-vnet-centralus", - "location": "centralus", - "name": "Aztec-vnet-centralus", - "resource_group_name": "cherokee-rg", - "subnet": [], - "tags": null, - "timeouts": null - }, - "sensitive_attributes": [], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjoxODAwMDAwMDAwMDAwfX0=", - "dependencies": [ - "azurerm_resource_group.rg_centralus" - ] - } - ] - }, - { - "mode": "managed", - "type": "azurerm_virtual_network", - "name": "vnet_westus2", - "provider": "provider[\"registry.terraform.io/hashicorp/azurerm\"]", - "instances": [ - { - "schema_version": 0, - "attributes": { - "address_space": [ - "10.1.0.0/16" - ], - "bgp_community": "", - "ddos_protection_plan": [], - "dns_servers": [], - "edge_zone": "", - "encryption": [], - "flow_timeout_in_minutes": 0, - "guid": "7b3ccc20-6de9-4f49-800c-36dece1428d6", - "id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/sioux-rg/providers/Microsoft.Network/virtualNetworks/Aztec-vnet-westus2", - "location": "westus2", - "name": "Aztec-vnet-westus2", - "resource_group_name": "sioux-rg", - "subnet": [], - "tags": null, - "timeouts": null - }, - "sensitive_attributes": [], - "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjoxODAwMDAwMDAwMDAwfX0=", - "dependencies": [ - "azurerm_resource_group.rg_westus2" - ] - } - ] - }, - { - "mode": "managed", - "type": "random_password", - "name": "admin_password", - "provider": "provider[\"registry.terraform.io/hashicorp/random\"]", - "instances": [ - { - "schema_version": 3, - "attributes": { - "bcrypt_hash": "$2a$10$MuY.C09fQYh0IF.aEhLD.uUJbfv9JM1zpDq1f6aF2nXTs6oFBb/YS", - "id": "none", - "keepers": null, - "length": 20, - "lower": true, - "min_lower": 0, - "min_numeric": 0, - "min_special": 0, - "min_upper": 0, - "number": true, - "numeric": true, - "override_special": "!#$%\u0026*()-_=+[]{}\u003c\u003e:?", - "result": "-tv1k#:*pqQK7Sw1\u0026E\u003eS", - "special": true, - "upper": true - }, - "sensitive_attributes": [ - [ - { - "type": "get_attr", - "value": "bcrypt_hash" - } - ], - [ - { - "type": "get_attr", - "value": "result" - } - ] - ] - } - ] - }, - { - "mode": "managed", - "type": "random_string", - "name": "kv_suffix", - "provider": "provider[\"registry.terraform.io/hashicorp/random\"]", - "instances": [ - { - "schema_version": 2, - "attributes": { - "id": "tlr5sYFS", - "keepers": null, - "length": 8, - "lower": true, - "min_lower": 0, - "min_numeric": 0, - "min_special": 0, - "min_upper": 0, - "number": true, - "numeric": true, - "override_special": null, - "result": "tlr5sYFS", - "special": false, - "upper": true - }, - "sensitive_attributes": [] - } - ] - } - ], + "outputs": {}, + "resources": [], "check_results": null } diff --git a/terraform.tfstate.backup b/terraform.tfstate.backup new file mode 100644 index 0000000..4a7fa7f --- /dev/null +++ b/terraform.tfstate.backup @@ -0,0 +1,226 @@ +{ + "version": 4, + "terraform_version": "1.11.3", + "serial": 80, + "lineage": "22565f98-f6c8-a960-466f-9dfb72683787", + "outputs": {}, + "resources": [ + { + "mode": "data", + "type": "azurerm_client_config", + "name": "current", + "provider": "provider[\"registry.terraform.io/hashicorp/azurerm\"]", + "instances": [ + { + "schema_version": 0, + "attributes": { + "client_id": "04b07795-8ddb-461a-bbee-02f9e1bf7b46", + "id": "Y2xpZW50Q29uZmlncy9jbGllbnRJZD0wNGIwNzc5NS04ZGRiLTQ2MWEtYmJlZS0wMmY5ZTFiZjdiNDY7b2JqZWN0SWQ9MTNkOWE2OGYtYTlmZi00ZjllLWJiYWMtNWMzNDE2NDQyOWQ2O3N1YnNjcmlwdGlvbklkPWUzZjY2M2U4LTk5YjEtNGUwYS1iMjM2LWEyYTZlNGRjZWNhYTt0ZW5hbnRJZD1lMmMwNWQ3Ni1hNTMwLTQxZTUtYWUwNC1lNjBmN2VmYTFmNzg=", + "object_id": "13d9a68f-a9ff-4f9e-bbac-5c34164429d6", + "subscription_id": "e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa", + "tenant_id": "e2c05d76-a530-41e5-ae04-e60f7efa1f78", + "timeouts": null + }, + "sensitive_attributes": [] + } + ] + }, + { + "mode": "managed", + "type": "azurerm_key_vault", + "name": "kv", + "provider": "provider[\"registry.terraform.io/hashicorp/azurerm\"]", + "instances": [ + { + "schema_version": 2, + "attributes": { + "access_policy": [ + { + "application_id": "", + "certificate_permissions": [], + "key_permissions": [ + "Get" + ], + "object_id": "13d9a68f-a9ff-4f9e-bbac-5c34164429d6", + "secret_permissions": [ + "Get", + "Set" + ], + "storage_permissions": [ + "Get" + ], + "tenant_id": "e2c05d76-a530-41e5-ae04-e60f7efa1f78" + } + ], + "contact": [], + "enable_rbac_authorization": false, + "enabled_for_deployment": false, + "enabled_for_disk_encryption": false, + "enabled_for_template_deployment": false, + "id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/muscogee-rg/providers/Microsoft.KeyVault/vaults/kv-secure-creds-tlr5sYFS", + "location": "eastus2", + "name": "kv-secure-creds-tlr5sYFS", + "network_acls": [ + { + "bypass": "AzureServices", + "default_action": "Allow", + "ip_rules": [], + "virtual_network_subnet_ids": [] + } + ], + "public_network_access_enabled": true, + "purge_protection_enabled": false, + "resource_group_name": "muscogee-rg", + "sku_name": "standard", + "soft_delete_retention_days": 90, + "tags": {}, + "tenant_id": "e2c05d76-a530-41e5-ae04-e60f7efa1f78", + "timeouts": null, + "vault_uri": "https://kv-secure-creds-tlr5syfs.vault.azure.net/" + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjoxODAwMDAwMDAwMDAwfSwic2NoZW1hX3ZlcnNpb24iOiIyIn0=", + "dependencies": [ + "azurerm_resource_group.rg_eastus2", + "data.azurerm_client_config.current", + "random_string.kv_suffix" + ] + } + ] + }, + { + "mode": "managed", + "type": "azurerm_key_vault_secret", + "name": "admin_password_secret", + "provider": "provider[\"registry.terraform.io/hashicorp/azurerm\"]", + "instances": [ + { + "schema_version": 0, + "attributes": { + "content_type": "", + "expiration_date": null, + "id": "https://kv-secure-creds-tlr5syfs.vault.azure.net/secrets/linux-admin-password/0762d4e91c3d49e89f9c0b7ed2d6c02e", + "key_vault_id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/muscogee-rg/providers/Microsoft.KeyVault/vaults/kv-secure-creds-tlr5sYFS", + "name": "linux-admin-password", + "not_before_date": null, + "resource_id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/muscogee-rg/providers/Microsoft.KeyVault/vaults/kv-secure-creds-tlr5sYFS/secrets/linux-admin-password/versions/0762d4e91c3d49e89f9c0b7ed2d6c02e", + "resource_versionless_id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/muscogee-rg/providers/Microsoft.KeyVault/vaults/kv-secure-creds-tlr5sYFS/secrets/linux-admin-password", + "tags": {}, + "timeouts": null, + "value": "-tv1k#:*pqQK7Sw1\u0026E\u003eS", + "version": "0762d4e91c3d49e89f9c0b7ed2d6c02e", + "versionless_id": "https://kv-secure-creds-tlr5syfs.vault.azure.net/secrets/linux-admin-password" + }, + "sensitive_attributes": [ + [ + { + "type": "get_attr", + "value": "value" + } + ] + ], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjoxODAwMDAwMDAwMDAwLCJkZWxldGUiOjE4MDAwMDAwMDAwMDAsInJlYWQiOjE4MDAwMDAwMDAwMDAsInVwZGF0ZSI6MTgwMDAwMDAwMDAwMH19", + "dependencies": [ + "azurerm_key_vault.kv", + "azurerm_resource_group.rg_eastus2", + "data.azurerm_client_config.current", + "random_password.admin_password", + "random_string.kv_suffix" + ] + } + ] + }, + { + "mode": "managed", + "type": "azurerm_resource_group", + "name": "rg_eastus2", + "provider": "provider[\"registry.terraform.io/hashicorp/azurerm\"]", + "instances": [ + { + "schema_version": 0, + "attributes": { + "id": "/subscriptions/e3f663e8-99b1-4e0a-b236-a2a6e4dcecaa/resourceGroups/muscogee-rg", + "location": "eastus2", + "managed_by": "", + "name": "muscogee-rg", + "tags": {}, + "timeouts": null + }, + "sensitive_attributes": [], + "private": "eyJlMmJmYjczMC1lY2FhLTExZTYtOGY4OC0zNDM2M2JjN2M0YzAiOnsiY3JlYXRlIjo1NDAwMDAwMDAwMDAwLCJkZWxldGUiOjU0MDAwMDAwMDAwMDAsInJlYWQiOjMwMDAwMDAwMDAwMCwidXBkYXRlIjo1NDAwMDAwMDAwMDAwfX0=" + } + ] + }, + { + "mode": "managed", + "type": "random_password", + "name": "admin_password", + "provider": "provider[\"registry.terraform.io/hashicorp/random\"]", + "instances": [ + { + "schema_version": 3, + "attributes": { + "bcrypt_hash": "$2a$10$MuY.C09fQYh0IF.aEhLD.uUJbfv9JM1zpDq1f6aF2nXTs6oFBb/YS", + "id": "none", + "keepers": null, + "length": 20, + "lower": true, + "min_lower": 0, + "min_numeric": 0, + "min_special": 0, + "min_upper": 0, + "number": true, + "numeric": true, + "override_special": "!#$%\u0026*()-_=+[]{}\u003c\u003e:?", + "result": "-tv1k#:*pqQK7Sw1\u0026E\u003eS", + "special": true, + "upper": true + }, + "sensitive_attributes": [ + [ + { + "type": "get_attr", + "value": "bcrypt_hash" + } + ], + [ + { + "type": "get_attr", + "value": "result" + } + ] + ] + } + ] + }, + { + "mode": "managed", + "type": "random_string", + "name": "kv_suffix", + "provider": "provider[\"registry.terraform.io/hashicorp/random\"]", + "instances": [ + { + "schema_version": 2, + "attributes": { + "id": "tlr5sYFS", + "keepers": null, + "length": 8, + "lower": true, + "min_lower": 0, + "min_numeric": 0, + "min_special": 0, + "min_upper": 0, + "number": true, + "numeric": true, + "override_special": null, + "result": "tlr5sYFS", + "special": false, + "upper": true + }, + "sensitive_attributes": [] + } + ] + } + ], + "check_results": null +}